Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.recotap.com/llms.txt

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

GET /accounts/custom-fields Returns active custom fields scoped to accounts only. Use these keys in the customFields object when calling Create Accounts or Update Account.
curl "http://eapi.recotap.com/api/v1/crm/accounts/custom-fields" \
  -H "X-Api-Key: your-api-key-here"
Response data
[
  {
    "key":         "CONTRACT_VALUE_C",
    "label":       "Contract Value",
    "labelType":   "number",
    "description": "Total contract value in USD",
    "options":     [],
    "objectType":  "accounts",
    "status":      "active"
  },
  {
    "key":         "DEAL_SOURCE_C",
    "label":       "Deal Source",
    "labelType":   "singleSelection",
    "description": null,
    "options":     ["inbound", "outbound", "partner"],
    "objectType":  "accounts",
    "status":      "active"
  }
]
FieldDescription
keyUnique key used in customFields objects when calling Create Accounts or Update Account
labelDisplay name
labelTypeField type e.g. singleLineText, multiLineText, singleSelection, multiSelection, number, date
descriptionHuman-readable description. null if not set.
optionsArray of option strings for singleSelection and multiSelection types. Empty array [] for all other types.
objectTypeAlways "accounts" for this endpoint
statusAlways "active" — only active fields are returned