cURL
curl --request POST \ --url https://api-dev.iclosed.io/customFields/answerCustomField \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "contactId": 123, "customFieldId": 123, "answer": "<string>" } '
{ "data": { "id": 123, "contactId": 123, "customFieldId": 123, "answer": "<string>", "type": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } }
Answering Custom Field
API key required in 'Authorization' header. Format: iclosed-
ID of the contact
ID of the custom field
Answer value(s) for the custom field
Successfully answered custom field
Show child attributes