curl --request GET \
--url https://api.example.com/v2/support-tickets/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": 123,
"created_by": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"status": "OPEN",
"status_display": "<string>",
"reason": "INCORRECT_AMOUNT",
"reason_display": "<string>",
"resolved_by": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"resolved_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"entities": [
{
"id": 123,
"entity_type": "<string>",
"entity_id": 1073741823
}
],
"comments": [
{
"id": 123,
"author": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"content": "<string>",
"sequence": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"ticket_type": "DISPUTE",
"description": "<string>",
"resolution_note": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}Retrieve all support tickets.
curl --request GET \
--url https://api.example.com/v2/support-tickets/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": 123,
"created_by": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"status": "OPEN",
"status_display": "<string>",
"reason": "INCORRECT_AMOUNT",
"reason_display": "<string>",
"resolved_by": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"resolved_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"entities": [
{
"id": 123,
"entity_type": "<string>",
"entity_id": 1073741823
}
],
"comments": [
{
"id": 123,
"author": {
"id": 123,
"username": "<string>",
"email": "jsmith@example.com"
},
"content": "<string>",
"sequence": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"ticket_type": "DISPUTE",
"description": "<string>",
"resolution_note": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of results to return per page.
The initial index from which to return the results.
Which field to use when ordering the results.
INCORRECT_AMOUNT - Incorrect AmountWRONG_VEHICLE - Wrong VehicleDUPLICATE_CHARGE - Duplicate ChargeNOT_MY_TOLL - Not My TollALREADY_PAID - Already PaidOTHER - OtherALREADY_PAID, DUPLICATE_CHARGE, INCORRECT_AMOUNT, NOT_MY_TOLL, OTHER, WRONG_VEHICLE A search term.
OPEN - OpenUNDER_REVIEW - Under ReviewAPPROVED - ApprovedDENIED - DeniedCANCELLED - CancelledRESOLVED - ResolvedAPPROVED, CANCELLED, DENIED, OPEN, RESOLVED, UNDER_REVIEW Was this page helpful?