# The Conversation object

> Attributes of a BloomText Conversation and the endpoints that return it.

Source: https://www.bloomtext.com/developers/api/reference/conversation-object/

Conversations your app user participates in.

### Attributes

- `id` (UUID, required): Unique ID of the conversation.

- `organization_id` (UUID, required): Organization the conversation belongs to.

- `type` (direct, group, broadcast, required): Direct message, group, or broadcast conversation.

- `created_at` (timestamp, required): When the conversation was created.

### Endpoints

| Method | Path | Endpoint |
| --- | --- | --- |
| GET | `/conversations` | [List conversations](https://www.bloomtext.com/developers/api/reference/list-conversations/) |
| GET | `/conversations/{conversationId}` | [Retrieve a conversation](https://www.bloomtext.com/developers/api/reference/get-conversation/) |

```json filename="The Conversation object"
{
  "id": "e5c3b7b8-8f08-4d5a-9af1-0d11b0f4b7a0",
  "organization_id": "6db1e3f5-9b7f-4f2b-8be1-0f1e1d7d7d8c",
  "type": "direct",
  "created_at": "2026-09-21T15:04:05Z"
}
```
