Skip to content

Import a Toolzz Bot

Endpoint used to import a Toolzz Bot into a workspace.

Terminal window
curl --request POST \
--url 'https://bots.toolzz.ai/api/v1/toolzz/import' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaceId": "<string>",
"typebot": {}
}'
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
workspaceIdstringThe workspace to import a bot into.Yes
typebotobject[]The bot information to import.Yes

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