curl --request PATCH \
  --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

Select columns to return

id
string
required

Contact List ID

organisation_id
string

Organisation ID

name
string

Name of contact list

created_at
string
updated_at
string

Body

application/json
contact_list

The body is of type object.

Response

200
application/json
The updated Contact List object

The response is of type object.