Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
Successful response
curl --request GET \
--url https://app.quick.bot/api/v1/workspaces \
--header 'Authorization: Bearer <token>'
{
"workspaces": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"billingPlan": {
"id": "<string>",
"name": "<string>",
"key": "FREE",
"description": "<string>",
"price": 123,
"chatsLimit": 123,
"storageLimit": 123,
"botsLimit": 123,
"membersLimit": 123,
"isSystem": true,
"currency": "<string>",
"isYearly": true,
"allowCustomDomain": true,
"allowWhatsapp": true,
"allowAnalytics": true,
"allowedBotBlocks": [
"<string>"
],
"allowGuests": true,
"allowResults": true,
"allowRemoveBrand": true
}
}
]
}
curl --request GET \
--url https://app.quick.bot/api/v1/workspaces \
--header 'Authorization: Bearer <token>'
{
"workspaces": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"billingPlan": {
"id": "<string>",
"name": "<string>",
"key": "FREE",
"description": "<string>",
"price": 123,
"chatsLimit": 123,
"storageLimit": 123,
"botsLimit": 123,
"membersLimit": 123,
"isSystem": true,
"currency": "<string>",
"isYearly": true,
"allowCustomDomain": true,
"allowWhatsapp": true,
"allowAnalytics": true,
"allowedBotBlocks": [
"<string>"
],
"allowGuests": true,
"allowResults": true,
"allowRemoveBrand": true
}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
Show child attributes