Developer's Guide

Learn how to configure and use our open APIs, to
freely integrate Deskero with any other software solution!

Ticket areas

Update

Update a ticket area

PUT https://api.deskero.com/ticketArea/update/{{ticketAreaId}}

Headers

Header Value
Authorization Bearer {{bearer}}
Content-Type application/json
clientId {{clientId}}

Example request

$ curl https://api.deskero.com/ticketArea/update/50913dd4c2e67797f82e5bb2 \ 
  -v \
  -H "Content-area: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef" \
  -X PUT \
  -d '{
    "area": "billing",
    "labels": {
      "en": "billing",
      "it": "fatturazione",
      "fr": "facturation",
      "es": "facturación"
    }
  }'

Example response

Updated ticket area id

{
  "id": "50913dd4c2e67797f82e5bb2"
}