Create Contact List
curl --request POST \
  --url https://integration.getmateo.com/api/v1/contact_list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "random uuid",
  "organisation_id": "random uuid",
  "name": "<string>",
  "created_at": "now()",
  "updated_at": "now()"
}'
{
  "id": "random uuid",
  "organisation_id": "random uuid",
  "name": "<string>",
  "created_at": "now()",
  "updated_at": "now()"
}

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

id
string<uuid>
default:random uuid

Contact List ID

organisation_id
string<uuid>
default:random uuid

Organisation ID

name
string<text>

Name of contact list

created_at
string<timestamp with time zone>
default:now()
updated_at
string<timestamp with time zone>
default:now()

Response

The updated Contact List object

id
string<uuid>
default:random uuid

Contact List ID

organisation_id
string<uuid>
default:random uuid

Organisation ID

name
string<text>

Name of contact list

created_at
string<timestamp with time zone>
default:now()
updated_at
string<timestamp with time zone>
default:now()