Developer's Guide

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

Tickets

Add note

Add a note to the current ticket

PUT https://api.deskero.com/ticket/addNote/{{ticketId}}

Headers

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

Example request

$ curl https://api.deskero.com/ticket/addNote/5277c21ce4b0d3bd74d43841 \ 
  -v \
  -H "Content-type: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef" \
  -X PUT \
  -d '{ 
     "note": "Resolve this!",
     "insertBy": "52132fffe4b006e6048bd013",
     "assignedTo": "52132fffe4b006e6048bd013",
     "date": 1388144315000,
     "remindMe": 1388144315000
  }'

Example response

Note id

{
  "id": "52bd6d4803647785e90abb34"
}