curl --request POST \
  --url https://integration.getmateo.com/api/v1/contact_details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "random uuid",
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "random uuid",
  "full_name": "<string>",
  "fts": "<string>",
  "is_blocked": false,
  "external_id": "<string>",
  "birthday": "2023-12-25",
  "salutation": "<string>",
  "email": "<string>",
  "sms": "<string>",
  "whatsapp": "<string>",
  "instagram": "<string>",
  "facebook": "<string>",
  "display_name": "<string>",
  "google_business_messaging": "<string>",
  "address_line1": "<string>",
  "address_line2": "<string>",
  "city": "<string>",
  "zipcode": "<string>",
  "country": "DEUTSCHLAND",
  "postal": "<string>",
  "number_of_marketing_opt_in_requests": 123,
  "latest_marketing_opt_in_request_sent_at": "<string>",
  "campaign_messages_this_month": 123,
  "whatsapp_marketing_opt_in": false,
  "sms_marketing_opt_in": false,
  "email_marketing_opt_in": false,
  "facebook_marketing_opt_in": false,
  "instagram_marketing_opt_in": false,
  "google_business_messaging_marketing_opt_in": false,
  "postal_marketing_opt_in": false,
  "whatsapp_transactional_opt_in": "legitimate_interest",
  "sms_transactional_opt_in": "legitimate_interest",
  "email_transactional_opt_in": "legitimate_interest",
  "facebook_transactional_opt_in": "legitimate_interest",
  "instagram_transactional_opt_in": "legitimate_interest",
  "google_business_messaging_transactional_opt_in": "legitimate_interest",
  "postal_transactional_opt_in": "legitimate_interest"
}'
{
  "id": "random uuid",
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "random uuid",
  "full_name": "<string>",
  "fts": "<string>",
  "is_blocked": false,
  "external_id": "<string>",
  "birthday": "2023-12-25",
  "salutation": "<string>",
  "email": "<string>",
  "sms": "<string>",
  "whatsapp": "<string>",
  "instagram": "<string>",
  "facebook": "<string>",
  "display_name": "<string>",
  "google_business_messaging": "<string>",
  "address_line1": "<string>",
  "address_line2": "<string>",
  "city": "<string>",
  "zipcode": "<string>",
  "country": "DEUTSCHLAND",
  "postal": "<string>",
  "number_of_marketing_opt_in_requests": 123,
  "latest_marketing_opt_in_request_sent_at": "<string>",
  "campaign_messages_this_month": 123,
  "whatsapp_marketing_opt_in": false,
  "sms_marketing_opt_in": false,
  "email_marketing_opt_in": false,
  "facebook_marketing_opt_in": false,
  "instagram_marketing_opt_in": false,
  "google_business_messaging_marketing_opt_in": false,
  "postal_marketing_opt_in": false,
  "whatsapp_transactional_opt_in": "legitimate_interest",
  "sms_transactional_opt_in": "legitimate_interest",
  "email_transactional_opt_in": "legitimate_interest",
  "facebook_transactional_opt_in": "legitimate_interest",
  "instagram_transactional_opt_in": "legitimate_interest",
  "google_business_messaging_transactional_opt_in": "legitimate_interest",
  "postal_transactional_opt_in": "legitimate_interest"
}

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

The body is of type object.

Response

200
application/json
The updated Contact object

The response is of type object.