Run in Apidog
Paginated list of your support tickets (page, limit, optional search; rows include ticket_number, subject, status, last updated, creator). search matches subject or ticket_number (partial). Newest activity first.
Request Add parameter in header API-key
Example: API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/tickets/?page&limit&search' \
--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 Generate Code
{
"status" : 0 ,
"status_description" : "string" ,
"data" : {
"tickets" : [
{
"ticket_number" : 0 ,
"last_updated" : "string" ,
"subject" : "string" ,
"status" : "string" ,
"creator" : "string"
}
] ,
"pagination" : {
"page" : 0 ,
"limit" : 0 ,
"total" : 0 ,
"total_pages" : 0
}
}
}
Modified at 2026-04-09 12:56:00