Reach: Contacts
Create a new contact
Create a new contact in the email marketing system.
This endpoint allows you to create a new contact with basic information like name, email, and surname.
If double opt-in is enabled, the contact will be created with a pending status and a confirmation email will be sent.
post/api/reach/v1/contacts
Request body
Example request
{
"email": "john.doe@example.com",
"name": "John",
"surname": "Doe",
"phone": "+14155552671",
"note": "VIP customer"
}Response
Success empty response
Example response
{
"message": "Request accepted"
}