List custom fields

GET/settings/user-profile/custom-fields

Lists the custom field definitions available for user profiles in the current account.

Returns all definitions in a single response, ordered by position.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/settings/user-profile/custom-fields"
{  "data": [    {      "created_at": "2019-08-24T14:15:22Z",      "id": "string",      "label": "string",      "object": "custom_field",      "position": 0,      "required": true,      "revision": "string",      "type": "text",      "updated_at": "2019-08-24T14:15:22Z"    }  ]}