Creates a new lead-level custom field on the caller’s team.
Notes:
curl --request POST \
--url https://api.lofty.com/v1.0/teamFeatures/custom-field \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"attributeName": "<string>",
"attributeType": "number, text, date, single_select, multi_select, percentage, currency",
"value": "<string>",
"params": "<string>"
}
'"success"Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
User customized field
The name of this custom field
The type of the field
"number, text, date, single_select, multi_select, percentage, currency"
The content of the field for lead, value for multi-select,such as "["item1","item2\s",...]" .It's unnecessary when adding a new custom field for team
options for select, such as {"option":["item1","item2",...]}
Custom field created.
The response is of type string.
"success"
curl --request POST \
--url https://api.lofty.com/v1.0/teamFeatures/custom-field \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"attributeName": "<string>",
"attributeType": "number, text, date, single_select, multi_select, percentage, currency",
"value": "<string>",
"params": "<string>"
}
'"success"