fields
Create a custom field
Creates a new custom field that can be used to store additional information on prospect profiles. Supported field types are Text, Number, Long Text, Currency, Date, and Dropdown.
post/v1/fields
Request body
Example request
{
"label": "LinkedIn Profile URL",
"fieldType": "text",
"fallbackText": "Not provided",
"metadata": {
"options": [
"Free",
"Growth",
"Enterprise"
]
}
}Response
Custom field created successfully
{"stackTrail":"paths:/v1/fields:post:responses:201:content:application/json:schema","oasType":"schema","type":"unknown","example":{"message":"Custom field created successfully","payload":{"id":"Vj9kLp2Q","label":"LinkedIn URL","isDefault":false,"fieldType":"text"}}}
Example response
{
"message": "Custom field created successfully",
"payload": {
"id": "Vj9kLp2Q",
"label": "LinkedIn URL",
"isDefault": false,
"fieldType": "text"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.