List Tickets

Retrieve support tickets created by your company.

GET
/api/v1/tickets?page=1&limit=10

Description

Returns paginated Resolve Now tickets for the authenticated corporate user, including embedded comments per ticket.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Query Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number (1-based). Default is 1.
limitnumberNoRecords per page. Default is 10. Max 100 on tickets, wallet, and shipping labels.

Response

FieldTypeDescription
successbooleanWhether the request succeeded.
messagestringHuman-readable status message.
dataarrayTicket objects for the current page.
data[].ticket_idstringTicket ID.
data[].ticket_numberstringHuman-readable ticket number.
data[].summarystringTicket title.
data[].descriptionstringTicket body.
data[].statusstringCurrent ticket status.
data[].supportbooleanWhether routed to Unduit support.
data[].completedbooleanWhether the ticket is completed.
data[].created_atstringCreation timestamp.
data[].updated_atstringLast update timestamp.
data[].commentsarrayEmbedded comment thread.
data[].comments[].comment_idstringComment ID.
data[].comments[].sender_appstringresolve-now or resolve-it.
data[].comments[].sender_idstringOpaque sender user ID.
data[].comments[].sender_namestringDisplay name of the comment author.
data[].comments[].messagestringComment text.
data[].comments[].created_atstringComment timestamp (ISO 8601).
current_pagenumberCurrent page number (1-based).
total_pagesnumberTotal number of pages.
totalnumberTotal matching records across all pages.
per_pagenumberPage size used for this response (matches limit).
fromnumber | null1-based index of the first record on this page. null when total is 0.
tonumber | null1-based index of the last record on this page. null when total is 0.

Related Endpoints

Did this page help you?