curl --request GET \
--url https://api.tensormesh.ai/v1/support/tickets \
--header 'Authorization: Bearer <token>'{
"tickets": [
{
"ticketId": "<string>",
"subject": "<string>",
"requesterUserId": "<string>",
"status": "TICKET_STATUS_UNSPECIFIED",
"type": "TICKET_TYPE_UNSPECIFIED",
"conversations": [
{
"userId": "<string>",
"userName": "<string>",
"userRole": "USER_ROLE_UNSPECIFIED",
"content": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"page": 123,
"size": 123,
"total": "<string>"
}Ticket listing, ticket detail, ticket creation, closure, and message append operations.
curl --request GET \
--url https://api.tensormesh.ai/v1/support/tickets \
--header 'Authorization: Bearer <token>'{
"tickets": [
{
"ticketId": "<string>",
"subject": "<string>",
"requesterUserId": "<string>",
"status": "TICKET_STATUS_UNSPECIFIED",
"type": "TICKET_TYPE_UNSPECIFIED",
"conversations": [
{
"userId": "<string>",
"userName": "<string>",
"userRole": "USER_ROLE_UNSPECIFIED",
"content": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"page": 123,
"size": 123,
"total": "<string>"
}Use this group for support-ticket workflows. Common operations:Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
Filter by requester.
Filter by status.
TICKET_STATUS_UNSPECIFIED, TICKET_STATUS_OPEN, TICKET_STATUS_IN_PROGRESS, TICKET_STATUS_RESOLVED, TICKET_STATUS_CLOSED Page number (1-based).
Page size.
A successful response.
Was this page helpful?