Create Conversation Tag
curl --request POST \
  --url https://integration.getmateo.com/api/v1/conversation_tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "random uuid",
  "tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "random uuid",
  "tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

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

conversation_tag

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

Conversation creation date

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

Latest update

organisation_id
string<uuid>
default:random uuid

Organisation ID

tag_id
string<uuid>

Tag ID

conversation_id
string<uuid>

Conversation ID

Response

The updated Conversation Tag object

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

Conversation creation date

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

Latest update

organisation_id
string<uuid>
default:random uuid

Organisation ID

tag_id
string<uuid>

Tag ID

conversation_id
string<uuid>

Conversation ID