Delete a ticket
DELETE/v2/tickets/{id}
Permanently deletes a ticket by its ticket number.
Path Parameters
id- The ticket number
Response
Returns a deletion confirmation:
{
"id": "507f1f77bcf86cd799439011",
"object": "ticket",
"deleted": true
}
Behavior
- Customer-facing tickets: Deletes the ticket and its linked conversation.
- Back-office / tracker tickets: Deletes the ticket and unlinks it from the conversation (conversation is preserved).
Caution
This operation is irreversible.
Delete a ticket
curl https://do.featurebase.app/v2/tickets/$ID \
-X DELETE \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"id": "507f1f77bcf86cd799439011",
"deleted": true,
"object": "ticket"
}Returns Examples
{
"id": "507f1f77bcf86cd799439011",
"deleted": true,
"object": "ticket"
}