POST
/contacts
Create Contact
Compatibility endpoint to create contact data.
Compatibility endpoint to create contact data.
curl -X POST "http://localhost:8080/v1/contacts" \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"audience_id": "aud_123",
"email": "customer@example.com",
"first_name": "Customer",
"last_name": "Name"
}'
{
"id": "id_123"
}
{
"audience_id": "aud_123",
"email": "customer@example.com",
"first_name": "Customer",
"last_name": "Name"
}