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()"
}
Create a new 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()"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Filtering Columns
contact_list
The body is of type object
.
The updated Contact List object
The response is of type object
.