Dry run create multiple contacts for the organization in bulk.
cURL
curl --request POST \ --url https://api.dev.useinvent.com/orgs/{org_id}/contacts/bulk/dry \ --header 'Content-Type: application/json' \ --data ' { "channels": [ { "type": "email", "email": "<string>", "user_id": "<string>", "name": "<string>", "contact_id": "<string>" } ], "segment_id": "<string>" } '
{ "created": [ { "type": "email", "email": "<string>", "user_id": "<string>", "name": "<string>", "contact_id": "<string>" } ], "updated": [ { "type": "email", "email": "<string>", "user_id": "<string>", "name": "<string>", "contact_id": "<string>" } ], "invalid": [ { "type": "email", "email": "<string>", "user_id": "<string>", "name": "<string>", "contact_id": "<string>" } ] }
The ID of the org
Schema for creating multiple contacts
10000
Schema for creating a contact channel option
Show child attributes
The ID of the segment to add the contacts to
Schema for the created and updated contacts
Was this page helpful?