//CREATE A TICKET REASON url : https://site.io/public/api/support/ticket/reasons request[POST] : { "ticketReason" : { "name": "nouveau ticket", "lang" : "fr", "description" : "nouveau ticket" }, } RESPONSE : { "id": 2, "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e", "name": "nouveau ticket", "lang": "fr", "description": "nouveau ticket", "active": true, "template": { "id": 3, "publicKey": "060f317600889e21569b928b4e07d3a01e24fda6def0500b49830841f2d011e5", "name": "nouveau ticket", "customFields": [], "creator": { "id": 1 } }, "companyServices": [], "userGroups": [] } //UPDATE A TICKET REASON url : https://site.io/public/api/support/ticket/reasons request[PUT] : { "ticketReason" : { "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e", "name": "nouveau nom de ticket", "lang" : "fr", "description" : "nouvellle description ticket", "active" : false } } RESPONSE : { "id": 2, "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e", "name": "nouveau nom de ticket", "lang": "fr", "description": "nouvellle description ticket", "active": false, "template": { "id": 3, "publicKey": "060f317600889e21569b928b4e07d3a01e24fda6def0500b49830841f2d011e5", "name": "nouveau ticket", "customFields": [], "creator": { "id": 1 } }, "companyServices": [], "userGroups": [] } //VIEW A TICKET REASON url : https://site.io/public/api/support/ticket/reasons request[VIEW] : { "ticketReason" : { "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e" } } RESPONSE : { "id": 2, "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e", "name": "nouveau ticket", "lang": "fr", "description": "nouveau ticket", "active": true, "template": { "customFields": [], }, "companyServices": [], "userGroups": [] } //VIEW ALL TICKET REASON url : https://site.io/public/api/support/ticket/reasons void RESPONSE an array of reason //DELETE A TICKET REASON url : https://site.io/public/api/support/ticket/reasons request[DELETE] : { "ticketReason" : { "publicKey": "34c99d5f29df52199668f81ba198eee36030a28ea4a66a2cd955e35e5cd7f94e" } } RESPONSE : { "error": false, "deleted": true }