Get Ticket
curl --request GET \
--url https://api.tensormesh.ai/v1/support/tickets/{ticketId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tensormesh.ai/v1/support/tickets/{ticketId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tensormesh.ai/v1/support/tickets/{ticketId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ticket": {
"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"
}
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Support
Get Ticket
Retrieves a support ticket by ID.
GET
https://api.tensormesh.ai
/
v1
/
support
/
tickets
/
{ticketId}
Get Ticket
curl --request GET \
--url https://api.tensormesh.ai/v1/support/tickets/{ticketId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tensormesh.ai/v1/support/tickets/{ticketId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tensormesh.ai/v1/support/tickets/{ticketId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ticket": {
"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"
}
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Authorizations
Bearer authentication using an access token. Format: Bearer <access_token>
Path Parameters
Ticket ID.
Response
A successful response.
GetTicketResponse is the response for a ticket fetch.
Ticket represents a support case.
Show child attributes
Show child attributes
⌘I

