Skip to main content
GET
/
v1
/
workspaces
/
{workspaceId}
Get workspace
curl --request GET \
  --url https://app.quick.bot/api/v1/workspaces/{workspaceId} \
  --header 'Authorization: Bearer <token>'
{
  "workspace": {
    "id": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<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
    },
    "billingPlanId": "<string>",
    "stripeId": "<string>",
    "billingEmail": "jsmith@example.com",
    "billingCompany": "<string>",
    "billingVatType": "<string>",
    "billingVatValue": "<string>",
    "isSuspended": true,
    "isPastDue": true,
    "isVerified": true
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

workspaceId
string
required

Response

Successful response

workspace
object
required
I