curl --request GET \
--url https://api.getprimo.com/tickets \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"reference": "<string>",
"title": "<string>",
"status": "PENDING",
"priority": "LOW",
"assignee": {
"type": "<string>",
"email": "<string>"
},
"dueDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"totalElements": 4503599627370495,
"totalPages": 4503599627370495,
"page": 4503599627370496,
"perPage": 50
}
}Return a paginated list of tickets for your company.
curl --request GET \
--url https://api.getprimo.com/tickets \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"reference": "<string>",
"title": "<string>",
"status": "PENDING",
"priority": "LOW",
"assignee": {
"type": "<string>",
"email": "<string>"
},
"dueDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"totalElements": 4503599627370495,
"totalPages": 4503599627370495,
"page": 4503599627370496,
"perPage": 50
}
}Use your Primo API key in the Authorization header as Bearer <API_KEY>.
Page number
1 <= x <= 9007199254740991Number of items per page (max 100)
1 <= x <= 100PENDING, IN_PROGRESS, COMPLETED, CANCELLED LOW, MEDIUM, HIGH 1status, priority, reference, title, tasksCount ASC, DESC Was this page helpful?