Introduction
- API Reference
- Platform
- Platform APIs
- Login & sign up
- Organizations
- SLA duration
- Users
- Teams
- Tickets
- Core operations
- Assignment & escalation
- Relationships
- Comments & attachments
- Time tracking
- Status management
- Type management
- Priority management
- Tag management
- Ticket tags
- Other operations
- Comments & reactions
- Custom fields
- Forms
- Draft tickets
- Accounts & contacts
- Custom objects
- Workflows
- SLA
- Storage
- Notifications
Link tickets
curl --request PATCH \
--url https://platform.thena.ai/v1/tickets/link \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-org-id: <api-key>' \
--data '{
"sourceTicketId": "<string>",
"linkedTicketId": "<string>"
}'
{
"status": true,
"message": "Success",
"timestamp": "2024-01-01T00:00:00.000Z",
"data": {
"id": "<string>",
"title": "<string>",
"ticketId": 123,
"description": "<string>",
"accountId": "<string>",
"status": "<string>",
"statusId": "<string>",
"priority": "<string>",
"priorityId": "<string>",
"storyPoints": 123,
"account": "<string>",
"teamId": "<string>",
"teamName": "<string>",
"isPrivate": true,
"typeId": "<string>",
"type": "<string>",
"assignedAgent": "<string>",
"assignedAgentId": "<string>",
"assignedAgentEmail": "<string>",
"requestorEmail": "<string>",
"customerContactId": "<string>",
"customerContactFirstName": "<string>",
"customerContactLastName": "<string>",
"customerContactEmail": "<string>",
"submitterEmail": "<string>",
"customFieldValues": [
"<string>"
],
"deletedAt": "<string>",
"archivedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"formId": "<string>",
"aiGeneratedTitle": "<string>",
"aiGeneratedSummary": "<string>"
}
}
Authorizations
Enter JWT bearer token
Enter organization ID
Body
The ID of the source ticket
The ID of the target ticket to link to
Response
The status of the response
The message of the response
The timestamp of the response
The response for create/update/delete ticket operations
The unique identifier of the ticket
The title of the ticket
The ticket ID of the ticket
The description of the ticket
The account ID of the ticket
The status of the ticket
The status ID of the ticket
The priority of the ticket
The priority ID of the ticket
The story points of the ticket
The account of the ticket
The team ID of the ticket
The name of the team of the ticket
Whether the ticket is private
The type ID of the ticket
The name of the type of the ticket
The assigned agent of the ticket
The assigned agent ID of the ticket
The assigned agent email of the ticket
The requestor email of the ticket
The customer contact ID of the ticket
The customer contact first name of the ticket
The customer contact last name of the ticket
The customer contact email of the ticket
The submitter email of the ticket
The custom field values
The deleted at date of the ticket
The archived at date of the ticket
The created at date of the ticket
The updated at date of the ticket
The form ID of the ticket
The AI generated title of the ticket
The AI generated summary of the ticket
curl --request PATCH \
--url https://platform.thena.ai/v1/tickets/link \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-org-id: <api-key>' \
--data '{
"sourceTicketId": "<string>",
"linkedTicketId": "<string>"
}'
{
"status": true,
"message": "Success",
"timestamp": "2024-01-01T00:00:00.000Z",
"data": {
"id": "<string>",
"title": "<string>",
"ticketId": 123,
"description": "<string>",
"accountId": "<string>",
"status": "<string>",
"statusId": "<string>",
"priority": "<string>",
"priorityId": "<string>",
"storyPoints": 123,
"account": "<string>",
"teamId": "<string>",
"teamName": "<string>",
"isPrivate": true,
"typeId": "<string>",
"type": "<string>",
"assignedAgent": "<string>",
"assignedAgentId": "<string>",
"assignedAgentEmail": "<string>",
"requestorEmail": "<string>",
"customerContactId": "<string>",
"customerContactFirstName": "<string>",
"customerContactLastName": "<string>",
"customerContactEmail": "<string>",
"submitterEmail": "<string>",
"customFieldValues": [
"<string>"
],
"deletedAt": "<string>",
"archivedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"formId": "<string>",
"aiGeneratedTitle": "<string>",
"aiGeneratedSummary": "<string>"
}
}