GET
/
v3
/
custom-fields
List all custom fields
curl --request GET \
  --url https://api.reply.io/v3/custom-fields \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": 123,
    "title": "<string>",
    "fieldType": "Text",
    "metadata": "<string>",
    "orgWide": true
  }
]

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Response

List of custom fields retrieved successfully

id
integer

Custom field ID

title
string

Custom field name

fieldType
enum<string>

Custom field type

Available options:
Text,
Number
metadata
string | null

Optional metadata for the field (e.g., dropdown options)

orgWide
boolean

Whether the field is shared across the organization