Skip to main content
POST
/
contacts
Create contact
curl --request POST \
  --url https://connect.pingback.com/v2/contacts \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "example@email.com",
  "origin": {
    "url": "https://pingback.com",
    "utmSource": "source"
  },
  "attributes": {
    "name": "John Doe",
    "phone": "+5531999999999"
  }
}
'
{
  "message": "Contact created",
  "data": {
    "id": "ea8a2a47-2a05-4a43-b284-35df0ea46333",
    "email": "example@email.com"
  }
}

Authorizations

x-api-key
string
header
required

Headers

x-developer-mode
boolean
x-api-key
string
required

Body

application/json
email
string<email>
required
origin
object
attributes
object

Response

Contact created

id
string<uuid>
email
string<email>