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": "<string>",
      "surname": "<string>",
      "phone_number": "<string>",
      "email": "<string>"
    }
  ]
}
'

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

Response

Success