Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
Successful response
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
}
}
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
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
Show child attributes