POST
/
crm
/
contacts
curl --request POST \
  --url https://api.panora.dev/crm/contacts \
  --header 'Content-Type: application/json' \
  --header 'x-connection-token: <x-connection-token>' \
  --data '{
  "first_name": "<string>",
  "last_name": "<string>",
  "email_addresses": [
    {
      "email_address": "<string>",
      "email_address_type": "<string>",
      "owner_type": "<string>"
    }
  ],
  "phone_numbers": [
    {
      "phone_number": "<string>",
      "phone_type": "<string>",
      "owner_type": "<string>"
    }
  ],
  "addresses": [
    {
      "street_1": "<string>",
      "street_2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "postal_code": "<string>",
      "country": "<string>",
      "address_type": "<string>",
      "owner_type": "<string>"
    }
  ],
  "user_id": "<string>",
  "field_mappings": {}
}'
{
  "message": "<string>",
  "error": "<string>",
  "statusCode": 123,
  "data": {
    "name": "<string>",
    "email_address": "<string>",
    "phone_number": "<string>",
    "details": "<string>",
    "field_mappings": {},
    "id": "<string>",
    "remote_id": "<string>",
    "remote_data": {}
  }
}

Headers

x-connection-token
string
required

The connection token

Query Parameters

remote_data
boolean

Set to true to include data from the original CRM software.

Body

application/json
first_name
string
required

The first name of the contact

last_name
string
required

The last name of the contact

email_addresses
object[]
required

The email addresses of the contact

phone_numbers
object[]
required

The phone numbers of the contact

addresses
object[]
required

The addresses of the contact

field_mappings
object
required
user_id
string

The uuid of the user who owns the contact

Response

200
application/json
statusCode
number
required
message
string
error
string
data
object