POST
/
unified
/
crm
/
contact
curl --request POST \
  --url https://api.openint.dev/v0/unified/crm/contact \
  --header 'Content-Type: application/json' \
  --header 'x-apikey: <api-key>' \
  --header 'x-connection-id: <api-key>' \
  --data '{
  "record": {
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "passthrough_fields": {}
  }
}'
{
  "record": {
    "id": "<string>",
    "updated_at": "<string>",
    "raw_data": {},
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone": "<string>"
  }
}

Authorizations

x-apikey
string
header
required
x-connection-id
string
header
required

Body

application/json
record
object
required

Response

200
application/json
Successful response
record
object
required