Skip to main content
Create Contact List Contact
curl --request POST \
  --url https://integration.getmateo.com/api/v1/contact_list_contact \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "contact_list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organisation_id": "random uuid"
}'
{
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "contact_list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organisation_id": "random uuid"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

select
string

Filtering Columns

Body

application/json

contact_list_contact

contact_id
string<uuid>

Contact ID

contact_list_id
string<uuid>

Contact List ID

organisation_id
string<uuid>
default:random uuid

Organisation ID

Response

The updated Contact List Contact object

contact_id
string<uuid>

Contact ID

contact_list_id
string<uuid>

Contact List ID

organisation_id
string<uuid>
default:random uuid

Organisation ID

I