POST
/
assistants
/
{assistant_id}
/
versions
Get Assistant Versions
curl --request POST \
  --url https://api.b-bot.space/v2/assistants/{assistant_id}/versions
[
  {
    "assistant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "graph_id": "<string>",
    "config": {
      "tags": [
        "<string>"
      ],
      "recursion_limit": 123,
      "configurable": {}
    },
    "context": {},
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "metadata": {},
    "version": 123,
    "name": "<string>",
    "description": "<string>"
  }
]

Path Parameters

assistant_id
string<uuid>
required

The ID of the assistant.

Response

200
application/json

Success

The response is of type Assistant · object[].