Skip to main content
GET
/
v1
/
custom_fields
/
{id}
Get a custom_field
curl --request GET \
  --url https://api.slant.app/v1/custom_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "abc123xyz",
  "field_key": "pageport_lead_source",
  "display_name": "Lead Source",
  "entity_type": "Household",
  "field_type": "text",
  "options": {
    "select_options": [
      "Option 1",
      "Option 2"
    ],
    "cross_reference_allowed_target_types": [
      "Household",
      "Contact"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.slant.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 Bearer Token from Clerk authentication

Path Parameters

id
string
required

The custom_field ID

Response

successful

id
string
required

The custom field ID

Example:

"abc123xyz"

field_key
string
required

The unique field key

Example:

"pageport_lead_source"

display_name
string
required

The human-readable field name

Example:

"Lead Source"

entity_type
enum<string>
required

The entity type this field applies to

Available options:
Household,
Person,
Contact,
Opportunity
Example:

"Household"

field_type
enum<string>
required

The field data type

Available options:
text,
number,
date,
boolean,
single_select,
cross_reference
Example:

"text"

options
object

Field-specific options (e.g., select_options for single_select, cross_reference_allowed_target_types for cross_reference)