Search Custom Fields
Retrieve all custom fields associated with your account.
Headers
- Type: stringContent
- Type application/json
Responses
- application/json
- application/json
Request Example for get/custom_fields
curl /custom_fields \
--header 'Content-Type: application/json' \
--header 'X-Auth-Token: YOUR_SECRET_TOKEN'
{
"page": 1,
"per_page": 1,
"total_entries": 1,
"total_pages": 1,
"custom_fields": [
{
"id": 1,
"key": "string",
"label": "string",
"object_ref": "string",
"active": true,
"created_at": "2026-06-19T19:21:28.100Z",
"updated_at": "2026-06-19T19:21:28.100Z"
}
]
}