Ticket groups
Update
Update a ticket group
PUT https://api.deskero.com/ticketGroup/update/{{ticketGroupId}}
Headers
Header | Value |
---|---|
Authorization | Bearer {{bearer}} |
Content-Type | application/json |
clientId | {{clientId}} |
Example request
$ curl https://api.deskero.com/ticketGroup/update/50913dd4c2e67797f82e5bb2 \
-v \
-H "Content-group: application/json" \
-H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
-H "clientId: 51f01687e4b094c81d7b8bcdellef" \
-X PUT \
-d '{
"group": "marketing",
"labels": {
"en": "marketing",
"it": "marketing",
"fr": "commercialisation",
"es": "márketing"
}
}'
Example response
Updated ticket group id
{
"id": "50913dd4c2e67797f82e5bb2"
}