Create contact

Contacts with emails that already exist for the target sequence will now be processed as they are duplicates. You will receive a success message however.

Create a new contact in Copyfactory

POST https://app.copyfactory.io/api/v2/contact/

Create a new contact in Copyfactory.

Headers

Request Body

{
    'data': {'status': 'Contact successfully queued.'}
}
curl --location --request POST 'https://app.copyfactory.io/api/v2/contact/' \
--header 'Authorization: API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": 'email@email.com',
    "sequence_id": 0,
    "linkedin_handle": 'https://www.linkedin.com/in/my-handle/',
    "playbook_id": 0,
    "do_enrichment": False,
    "custom_fields": {'custom_field':'Custom value'},
}'

Last updated