Blog
Github
  1. Ticket
  • Getting Started
    • Introduction
    • Quickstart
    • Authentication
    • Status codes
  • Webhook
    • Webhook Setup
    • Webhook Events and Schema
  • API Reference
    • Contact
      • Listing
      • Create
      • Filter By SocialPlatformId
      • Form Fields
      • Detail
      • Update
      • Delete
      • Fetch Contact Groups
      • Update tags
    • Tag
      • Listing
    • Channel
      • Listing
      • Create
    • Ticket
      • Listing
        GET
      • Create
        POST
      • Filter by Contact ID
        GET
      • Form Fields
        GET
      • Update
        PATCH
      • Update status
        PUT
    • Category
      • Listing
    • CxLog
      • Listing
    • Message
      • Send message
Blog
Github
  1. Ticket

Listing

GET
/api/v1/tickets
This endpoint allows you to retrieve a paginated list of all your tickets. By default, a maximum of ten tickets are shown per page.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apigw.klinkcx.com/api/v1/tickets' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "total": 100,
  "page": 1,
  "pageSize": 10,
  "lastPage": 1,
  "data": [
    {
      "id": "string",
      "createdAt": "string",
      "updatedAt": "string",
      "deletedAt": null,
      "title": "string",
      "description": "string",
      "type": "string",
      "channel": "string",
      "priority": "string",
      "status": "string",
      "contactId": "string",
      "creatorId": "string",
      "assigneeId": "string",
      "reasonToAssign": "string",
      "ticketNumber": 38838,
      "assignee": {
        "id": "string",
        "createdAt": "string",
        "updatedAt": "string",
        "deletedAt": null,
        "name": "string",
        "email": "string",
        "address": null,
        "phone": "string",
        "notificationCount": null,
        "provider": null,
        "providerId": null,
        "firstName": null,
        "lastName": null
      },
      "contact": {
        "id": "string",
        "createdAt": "string",
        "updatedAt": "string",
        "deletedAt": null,
        "name": "string",
        "address": "string",
        "channel": "string",
        "notes": "string",
        "contactNumber": 23423,
        "companyId": null,
        "contactProfile": "string",
        "socialProfileUrl": null
      },
      "creator": {
        "id": "string",
        "createdAt": "string",
        "updatedAt": "string",
        "deletedAt": null,
        "name": "string",
        "email": "string",
        "address": null,
        "phone": "string",
        "notificationCount": 2,
        "provider": null,
        "providerId": null,
        "firstName": null,
        "lastName": null
      },
      "categories": [],
      "tags": [
        {
          "id": "string",
          "createdAt": "string",
          "updatedAt": "string",
          "deletedAt": null,
          "name": "string",
          "position": 1
        }
      ],
      "customFields": [
        {
          "id": "string",
          "createdAt": "string",
          "updatedAt": "string",
          "deletedAt": null,
          "textValue": "string",
          "booleanValue": null,
          "numberValue": null,
          "dateValue": null,
          "entityId": "string",
          "attributeId": "string",
          "attribute": {
            "id": "string",
            "createdAt": "string",
            "updatedAt": "string",
            "deletedAt": null,
            "systemName": "string",
            "displayName": "string",
            "type": "string",
            "position": 1,
            "isDefault": false,
            "isArchived": false,
            "isRequired": false,
            "isUnique": false,
            "groupId": "string"
          },
          "uploads": []
        }
      ]
    },
    {
      "id": "string",
      "createdAt": "string",
      "updatedAt": "string",
      "deletedAt": null,
      "title": "string",
      "description": "string",
      "type": "string",
      "channel": "string",
      "priority": "string",
      "status": "string",
      "contactId": "string",
      "creatorId": "string",
      "assigneeId": "string",
      "reasonToAssign": "string",
      "ticketNumber": 323
    }
  ]
}
Modified at 2026-01-09 04:15:46
Previous
Create
Next
Create
Built with