curl --request POST \
--url http://localhost:3000/api/custom-attributes \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "Customer Age",
"type": "number",
"description": "Age of the customer in years"
}
'Define a new custom field for contacts
curl --request POST \
--url http://localhost:3000/api/custom-attributes \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "Customer Age",
"type": "number",
"description": "Age of the customer in years"
}
'