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>"
}
Update an 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>"
}
The ID of the assistant.
Payload for updating an assistant.
Success
The response is of type object
.