Skip to main content
GET
/
v1
/
workspaces
List workspaces
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
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

workspaces
object[]
required
I