Superadmin APIs/Support Tickets
Reply to Ticket
POST
/superadmin/support/tickets/:id/messagesBearer token required
SUPERADMINContent-Type:
application/jsonPath Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | Required |
Request Example
JSON
{
"message": "We are investigating the issue. Can you provide server logs?"
}Code Examples
curl -X POST 'https://<your-domain>:3001/superadmin/support/tickets/:id/messages' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"message": "We are investigating the issue. Can you provide server logs?"
}'