PATCH
/
assistants
/
{assistant_id}
Patch Assistant
curl --request PATCH \
  --url https://api.b-bot.space/v2/assistants/{assistant_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "graph_id": "<string>",
  "config": {},
  "context": {},
  "metadata": {},
  "name": "<string>",
  "description": "<string>"
}'
{
  "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.

Body

application/json

Payload for updating an assistant.

Response

200
application/json

Success

The response is of type object.