Skip to content

Reply to Ticket

Add a reply to one of your support tickets. Replying to a closed ticket reopens it.

POST /v1/tickets/:id/reply

Path Parameters

ParameterDescription
idTicket ID

Request Body

FieldRequiredTypeDescription
messageYesstringReply body

Response

json
{
  "data": {
    "success": true,
    "id": "msg_xxx"
  }
}

Example

bash
curl -X POST "https://api.packedge.dev/v1/tickets/tkt_xxx/reply" \
  -H "Authorization: Bearer pk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "The webhook ID is whk_xxx."
  }'