Skip to content

Create Ticket

Open a new PackEdge support ticket.

POST /v1/tickets

Request Body

json
{
  "subject": "Webhook deliveries failing",
  "message": "Deliveries to my endpoint started failing yesterday.",
  "priority": "high",
  "category": "technical"
}
FieldRequiredTypeDescription
subjectYesstringTicket subject line
messageYesstringInitial message body
priorityNostringlow, normal (default), high, urgent
categoryNostringbilling, technical, feature, other

Response

json
{
  "data": {
    "id": "tkt_xxx",
    "subject": "Webhook deliveries failing",
    "status": "open",
    "priority": "high"
  }
}

Example

bash
curl -X POST "https://api.packedge.dev/v1/tickets" \
  -H "Authorization: Bearer pk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "subject": "Webhook deliveries failing",
    "message": "Deliveries to my endpoint started failing yesterday."
  }'