API Reference
/- Bulk Upsert Field Answers (Contacts)
Create a field
Update a field
Upsert Field Answer
Insert Invitee Answers
Get Contact Stages
Get Object and Fields
Get All Objects and Fields
Bulk Upsert Field Answers...
Create or update a custom field answer for multiple contacts (CONTACT-type fields only). Provide exactly one of customFieldId or identifier and a non-empty contactIds array (max 10,000). Answer format matches POST /v1/fields/answer.
Security
oauth2(Required scopes: fields:write) or bearerAuth(Required scopes: fields:write)
Target custom field identifier (use either this or customFieldId).
Contact IDs to apply the answer to (CONTACT-type fields only). Maximum 10,000 IDs per request.
- Mock serverhttps://api-docs-iclosed.redocly.app/_mock/openapi/v1/openapi/v1/fields/answer/bulk
- Productionhttps://public.api.iclosed.io/v1/fields/answer/bulk
- Development (use for local integration tests; published specs avoid localhost per lint rules)https://public-dev.api.iclosed.io/v1/fields/answer/bulk
- oauth2
- bearerAuth
curl -i -X POST \
https://api-docs-iclosed.redocly.app/_mock/openapi/v1/openapi/v1/fields/answer/bulk \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"customFieldId": 23,
"contactIds": [
8,
9,
10
],
"answer": [
"Short text value"
],
"overrideExisting": true
}'Response
{ "message": "Custom Fields Answer Created successfully" }