Articles

  • Getting Started
  • Advantar AI
  • Use Cases
  • Functionalities
  • Tools
  • API
  • Frequent Questions
  • Terms of Service

List Conversations

List Conversations

Retrieves a list of conversation IDs for the authenticated user.

  • URL:
    /process/list_conversations
  • Method: GET
  • Headers:
    • Content-Type: application/json
    • X-API-Key: YOUR_API_KEY_HERE

Example Request

import requests

BASE_URL = "https://advantar.ai/process"
API_KEY = "YOUR_API_KEY_HERE"

headers = {
    "Content-Type": "application/json",
    "X-API-Key": API_KEY
}

response = requests.get(f"{BASE_URL}/process/list_conversations", headers=headers)
print(response.json())

Example Response

{
  "status": "success",
  "conversations": ["conv_id_1", "conv_id_2", "conv_id_3"],
  "user_id": "user123"
}

Subtopics