Get Conversation

GET /conversations/{id}

Fetch a conversation by its id.

Path parameters

  • id string Required

    Id of the conversation

Query parameters

  • includes string

    Lists document ids the conversation is focused on.

    Value is document_ids.

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
GET /conversations/{id}
curl \
 -X GET https://getcody.ai/api/v1/conversations/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "string",
    "name": "string",
    "bot_id": "string",
    "created_at": 42
  }
}