FruxonDocs
ApiConversations

Fetches a single conversation by id.

Returns 404 when the conversation does not exist in the tenant. Counts and senders are tenant-wide (no scope filter applied) since the caller asked for a specific row.

GET
/v1/tenants/{tenant}/conversations/{conversation}
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

conversation*string

The conversation row id.

Formatuuid
tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/conversations/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "00000000-0000-0000-0000-000000000000",
  "integrationId": "string",
  "address": "string",
  "name": "string",
  "messagesCount": 0,
  "lastMessageCreatedAt": 0,
  "senders": [
    {
      "key": "string",
      "name": "string"
    }
  ]
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}