Skip to main content
POST
/
api
/
v1
/
listings
/
{uuid}
/
contacts
Add contacts to an existing listing
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/listings/{uuid}/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contacts": [
    {
      "name": "John",
      "surname": "Doe",
      "phone_number": "+905551234567",
      "email": "john@example.com",
      "timezone": "Europe/Istanbul",
      "country_code": "TR",
      "primary_language": "tr",
      "company": "Acme Corp",
      "city": "Istanbul",
      "lead_source": "website"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Body

application/json
contacts
object[]
required

Contacts to add. Matched by phone_number (priority 1) then email (priority 2). If found, existing contact is updated with new data; otherwise a new contact is created.

Response

Success