POST
/v1/contactsCreate contact
Create a new contact with an email address and optional metadata.
Authentication
Requires a Bearer token (API key) in the Authorization header.
Request body
emailstring (email)requiredEmail address of the contact.
subscribedbooleanWhether the contact is subscribed to receive marketing emails. Defaults to true.
firstNamestring or nullFirst name of the contact.
lastNamestring or nullLast name of the contact.
propertiesobjectComing soon - not yet supported. Key-value pairs of custom contact properties.
Response
201—Contact created
{
"success": true,
"id": "string"
}409—A contact with this email already exists
{
"success": false,
"message": "string"
}