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

Form Fields

GET
/api/v1/tickets/fields
This endpoint allows you to retrieve a paginated list of custom fields available for tickets.

Request

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

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apigw.klinkcx.com/api/v1/tickets/fields' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "page": 1,
  "pageSize": 10,
  "total": 25,
  "lastPage": 3,
  "data": [
    {
      "id": "string",
      "createdAt": "string",
      "updatedAt": "string",
      "deletedAt": null,
      "systemName": "string",
      "displayName": "string",
      "type": "string",
      "position": 1,
      "isDefault": true,
      "isArchived": false,
      "isRequired": true,
      "isUnique": true,
      "groupId": "string"
    }
  ]
}
Modified at 2026-01-09 04:25:44
Previous
Filter by Contact ID
Next
Update
Built with