Aitomatic DXA Factory User Guide
Aitomatic API Documentation
Aitomatic API Documentation
  • API Endpoints
  • Authentication
  • Domain-Expert Agent (DXA)
    • Get all DXAs
  • APLLY
    • ChatLLM
      • GET List Conversations
      • CREATE a Conversation
      • RENAME a Conversation
      • DELETE a Conversation
      • GET Conversation Messages
      • SEND Message (sync)
Powered by GitBook
On this page
  • Introduction
  • Sample request
  • Sample response
  1. APLLY
  2. ChatLLM

GET List Conversations

Introduction

Retrieves all conversations for a user, taking into account their organization context.

GET /conversations

Sample request

curl -X GET 'https://{api_endpoint}/conversations' -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Sample response

[
  {
    "id": 419,
    "conversation_id": "fb59e136-8a31-4a9f-bf21-b615664a64b1",
    "created_at": "2024-09-09T07:59:23.351889+00:00",
    "updated_at": "2024-09-09T07:59:23.351857+00:00",
    "agent_id": 172,
    "agent": {
      ...agent_info
    },
    "user_id": 1,
    "status": "active",
    "meta_data": {}
  }
]
PreviousChatLLMNextCREATE a Conversation

Last updated 9 months ago