Skip to main content
POST
/
contacts
Create Contact
curl --request POST \
  --url https://api.getoutbox.ai/contacts \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "full_name": "<string>",
  "email": "<string>",
  "phone_number": "<string>",
  "tags": [
    "<string>"
  ]
}
'

Authorizations

Authorization
string
header
required

Company API Key

Body

application/json

Contact creation details

full_name
string

Contact's full name

email
string

Contact's email address

phone_number
string

Contact's phone number

tags
string[]

Tags to associate with the contact

Response

Contact created successfully