Skip to main content
GET
/
custom-fields
cURL
curl --request GET \
  --url https://api.usepylon.com/custom-fields \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "<string>",
      "default_value": "<string>",
      "default_values": [
        "<string>"
      ],
      "description": "<string>",
      "id": "<string>",
      "is_read_only": true,
      "label": "<string>",
      "object_type": "<string>",
      "select_metadata": {
        "options": [
          {
            "label": "<string>",
            "slug": "<string>"
          }
        ]
      },
      "slug": "<string>",
      "source": "<string>",
      "type": "<string>",
      "updated_at": "<string>"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "has_next_page": true
  },
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer

Query Parameters

object_type
string
required

The object type of the custom fields. Can be "account", "issue", or "contact".

Response

data
object[]

The data payload of the response.

pagination
object
request_id
string

The request ID for tracking.