Skip to content

Update a Toolzz Bot

Endpoint used to update a created Toolzz Bot.

Terminal window
curl --request PATCH \
--url 'https://bots.toolzz.ai/api/v1/toolzz/{typebotId}' \
--header 'Authorization: Bearer <token>'
{
"typebots": [
{
"id": "<string>",
"name": "<string>",
"events": [],
"groups": [],
"variables": []
}
]
}
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
typebotIdstringThe unique identifier of the bot to update.Yes

KeyTypeDescription
typebotsobject[]Toolzz Bot updated information.
typebots[].idstringThe unique identifier of the bot.
typebots[].namestringThe name of the bot.
typebots[].eventsobject[]The events that occurred on the bot flow.
typebots[].groupsobject[]The groups of the bot.
typebots[].variablesobject[]The variables of the bot.

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request.