Get Conversation History

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/agentsa/doc/agentsa/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Agent.sa MCP server": {
  "url": "https://bump.sh/agentsa/doc/agentsa/mcp"
}
Close
GET /Company/Conversation/{Conversation}/history

Returns the full message history of a conversation in chronological order.

Required ability: Tickets-History

Rate limit: 40 requests / minute

Path parameters

  • Conversation string Required

    The conversation ID (e.g. cnv_01HX...).

Responses

  • 200 application/json

    Conversation history retrieved successfully.

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • id string
      • author object
        Hide author attributes Show author attributes object
        • type string

          Values are customer or agent.

        • name string
      • body string
      • created_at string(date-time)
  • 401

    Missing or invalid bearer token.

  • 403

    Token lacks the Tickets-History ability.

  • 404

    Conversation not found.

  • 429

    Rate limit exceeded. Retry after the number of seconds in the Retry-After header.

    Hide headers attribute Show headers attribute
    • Retry-After integer

      Seconds to wait before retrying.

GET /Company/Conversation/{Conversation}/history
curl \
 --request GET 'https://velents-agents.velents.ai/Company/Conversation/cnv_01HX.../history' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "msg_01HX...",
      "author": {
        "type": "customer",
        "name": "Acme Corp"
      },
      "body": "Ticket created via API",
      "created_at": "2026-05-06T10:14:00Z"
    }
  ]
}