Skip to main content
POST
/
contacts
Create a contact
curl --request POST \
  --url https://api.arnio.co/api/v1/contacts \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "phone": "<string>",
  "email": "<string>",
  "labels": [
    "<string>"
  ],
  "notes": "<string>"
}
'
Creates a new contact in your workspace.

Request Body

  • name (string, required)
  • phone (string, required)
  • email (string, optional)
  • labels (array, optional)

Example

{
  "name": "John Doe",
  "phone": "+1234567890"
}

Authorizations

X-API-Key
string
header
required

Provide your API key

Body

application/json
name
string
required
phone
string
required
email
string
labels
string[]
notes
string

Response

201

Contact created successfully