Skip to main content
POST
/
contacts
Create Contact
curl --request POST \
  --url https://api.example.com/contacts \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>"
}
'
{
  "id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://automatebusiness.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Create a new contact

This endpoint allows you to create a new contact in your CRM.

Request Body

name
string
required
The full name of the contact.
email
string
required
The email address of the contact.

Response

id
string
The unique identifier of the created contact.