Skip to content

Create a Toolzz Bot

Endpoint used to create a new Toolzz Bot.

Terminal window
curl --request POST \
--url 'https://bots.toolzz.ai/api/v1/toolzz/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaceId": "<string>",
"typebot": {
"name": "<string>"
}
}'
{
"typebots": [
{
"name": "<string>"
}
]
}
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
workspaceIdstringThe workspace ID to create a bot for.Yes
typebotobjectThe bot object to be created.Yes
typebot.namestringThe name of the bot to be created.Yes

KeyTypeDescription
typebotsobject[]The created bot information.
typebots[].namestringThe name of the bot.

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