Returns subject, status, and the full thread for ticket_number in the path. Message bodies use HTML; embedded images are removed.
Request
Add parameter in header API-key
Example:API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/tickets/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"ticket_number": 0,
"subject": "string",
"status": "string",
"thread": [
{
"created": "string",
"from": "user",
"author": "string",
"body": "string"
}
]
}
}
Modified at 2026-04-09 12:56:00