List Transaction Custom Fields
Returns the team-level custom field definitions applicable to transactions. Use the returned ids when populating LeadTransaction.customFields on create / update.
Scope: the caller’s team.
Headers
Bearer [access_token]
Response
List of custom field definitions (may be empty).
Custom field id.
1001
Custom field display name.
"Closing Agent"
Custom field data type. Note the mixed casing: Single-Select and Multi-Select are emitted with hyphens and mixed case, while the other values are the upper-case enum names.
DATE, TEXT, NUMBER, PERCENTAGE, Single-Select, Multi-Select, CURRENCY, HTML "Single-Select"
For Single-Select and Multi-Select types, a JSON string encoding the option list, e.g. "[{"label":"Option A","value":"1"},{"label":"Option B","value":"2"}]". Empty or null for non-select types.
"[{\"label\":\"Option A\",\"value\":\"1\"},{\"label\":\"Option B\",\"value\":\"2\"}]"