List all conversations of a bot

GET /bots/{id}/conversations

Retrieves bot conversations

Path parameters

  • id string Required

    Bot id

Responses

  • Successful response.

    Hide response attributes Show response attributes object
  • Resource Not Found

GET /bots/{id}/conversations
curl \
 -X GET https://api.hansei.app/public/v1/bots/{id}/conversations
Response examples (200)
{
  "value": {
    "data": [
      {
        "id": "conv_uFTwrKcx59i24ZOw",
        "name": "Conversation"
      },
      {
        "id": "conv_bYpD4XKoM4pU16hv",
        "name": "Conversation"
      },
      "{...}",
      "{...}"
    ]
  }
}
Response examples (200)
{
  "id": "conv_uFTwrKcx59i24ZOw",
  "name": "Conversation"
}