Skip to main content
POST
/
v1
/
workspaces
Create workspace
curl --request POST \
  --url https://app.quick.bot/api/v1/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "icon": "<string>",
  "name": "<string>"
}'
{
  "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.

Body

application/json
name
string
required
icon
string

Response

Successful response

workspace
object
required
I