post
https://api.suresend.ai/api/partner/customFields
Create a new custom field for your team. Custom fields extend person and company records with additional data.
Field Types:
text- Single-line text (default)number- Numeric valuesdate- Date values (ISO 8601 format)dropdown- Single-select from predefined choices
Important Notes:
- Field
namemust be unique within your team - Field
nameshould use lowercase with underscores (e.g., "lead_score", "property_budget") - For
dropdownfields, you must provide achoicesarray - Use
appliesToto specify whether field is for people, companies, or both
Examples:
Text Field:
{
"name": "referral_source",
"label": "Referral Source",
"fieldType": "text",
"appliesTo": "people"
}
Dropdown Field:
{
"name": "buyer_stage",
"label": "Buyer Stage",
"fieldType": "dropdown",
"appliesTo": "people",
"choices": ["Pre-Qualified", "House Hunting", "Under Contract", "Closed"]
}
Number Field:
{
"name": "property_budget",
"label": "Property Budget",
"fieldType": "number",
"appliesTo": "people",
"description": "Maximum budget for property purchase"
}