curl --request POST \
--url https://api.octolane.com/v1/contacts/bulk \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
[
{
"email": "jane@acme.com",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"job_title": "<string>",
"phone": "<string>",
"seniority": "<string>",
"linkedin": "<string>",
"twitter": "<string>",
"twitter_followers": 123,
"current_company": "<string>",
"other_emails": [
"<string>"
],
"type": "<string>",
"avatar_url": "<string>",
"email_verified": true,
"first_email_interaction": "2023-11-07T05:31:56Z",
"last_email_interaction": "2023-11-07T05:31:56Z",
"first_meeting_interaction": "2023-11-07T05:31:56Z",
"last_meeting_interaction": "2023-11-07T05:31:56Z",
"last_interaction": "2023-11-07T05:31:56Z",
"next_meeting": "2023-11-07T05:31:56Z"
}
]
'