PATCH
/api/public/v1/tickets/{ticketId}

Update a ticket

Update one or more fields on a ticket.

Path Parameters

NameTypeRequiredDescription
ticketIdstring
Required
Ticket ID.

Request Body

PropertyTypeDescription
titlestringTitle.
descriptionstringDescription.
statusstringStatus.
prioritystringPriority.
assigneeIdstringAssigned employee.
sprintIdstringContaining sprint.
PATCHExample request
curl
curl -X PATCH "https://www.pxb.app/api/public/v1/tickets/{ticketId}" \
  -H "X-Organization-Id: your_org_id" \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "COMPLETED"
  }'
200Example response
json
{
  "message": "Ticket updated successfully!",
  "content": {
    "ticket": {
      "id": "tkt_1"
    }
  }
}