Admin APIs/Support Tickets
Reply to Ticket
POST
/admin/tickets/:id/messagesBearer token required
ADMINContent-Type:
application/jsonPath Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | Required |
Request Example
JSON
{
"message": "We have investigated the issue. The device needs a firmware update."
}Code Examples
curl -X POST 'https://<your-domain>:3001/admin/tickets/:id/messages' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"message": "We have investigated the issue. The device needs a firmware update."
}'