curl --request PATCH \
  --url https://integration.getmateo.com/api/v1/conversation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "inbox_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "assignee_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "id": "random uuid",
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "random uuid",
  "subject": "<string>",
  "status": "open",
  "assignee_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "unread": true,
  "channel_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "channel_type": "email",
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "external_id": "<string>",
  "tags": {},
  "is_spam": false,
  "inbox_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "latest_message_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "latest_inbound_message_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "latest_message_created_at": "<string>",
  "latest_inbound_message_created_at": "<string>"
}

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

Conversation ID

created_at
string

Conversation creation date

updated_at
string

Latest update

organisation_id
string

Organisation ID

subject
string

Subject of conversation

status
string

Status of conversation

assignee_id
string

Assignee ID

unread
string

Is conversation on unread?

channel_id
string

Channel ID

channel_type
string

Channel Type of Conversation

contact_id
string

Contact ID

external_id
string

External ID

tags
string

Given tags of conversation

is_spam
string

Is conversation marked as spam?

inbox_id
string

Inbox ID

latest_message_id
string

Latest message ID

latest_inbound_message_id
string

Latest inbound message ID

latest_message_created_at
string

Latest message creation date

latest_inbound_message_created_at
string

Latest inbound message creation date

Body

application/json
conversation

The body is of type object.

Response

200
application/json
The updated Conversation object

The response is of type object.