Retrieve a list of all support tickets you have created. The information may include the ticket's status, department, and last activity, useful for an overview of ongoing and completed support requests. The endpoint also returns IDs that can be used to retrieve detailed information about specific tickets in follow-up calls.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/support/tickets curl -X GET "https://cloud.hostup.se/api/support/tickets" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"tickets": [
{
"admin_read": "string",
"id": "string",
"parent_id": "string",
"type": "string",
"firstname": "string",
"lastname": "string",
"companyname": "string",
"date": "string",
"lastreply": "string",
"dept_id": "string",
"name": "string",
"client_id": "string",
"status": "string",
"ticket_number": "string",
"request_type": "string",
"tsubject": "string",
"deptname": "string",
"priority": "string",
"flags": 0,
"escalated": "string",
"tags": "string",
"creator_id": "string",
"owner_id": "string",
"group_id": "string",
"client_parent": "string",
"rpname": "string",
"last_reply": "string",
"status_color": "string",
"lastreply_date": "string",
"number": "string",
"subject": "string",
"department": "string",
"linkedServices": [
"string"
]
}
],
"totalpages": 0
}
}