Skip to content

Get a Workspace

Endpoint used to get a workspace in Toolzz Bots.

Terminal window
curl --request GET \
--url 'https://bots.toolzz.ai/api/v1/workspaces/{workspaceId}' \
--header 'Authorization: Bearer <token>'
{
"workspaces": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"plan": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"settings": {}
}
}
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
workspaceIdstringThe unique identifier of the workspace to get.Yes

KeyTypeDescription
workspacesobjectWorkspace information.
workspaces.idstringThe workspace unique identifier.
workspaces.namestringThe workspace name.
workspaces.iconstringThe workspace visual appearance icon.
workspaces.planenum<string>The workspace plan.
workspaces.createdAtstringThe workspace creation date.
workspaces.updatedAtstringThe workspace last update date.
workspaces.settingsobjectThe workspace settings.

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