Skip to main content
POST
/
v1
/
bot
/
workspace
/
create
Create Workspace
curl --request POST \
  --url https://api.boostgpt.co/v1/bot/workspace/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "bot_id": "<string>",
  "name": "<string>",
  "description": "<string>"
}
'
{
  "workspace": {
    "uuid": "<string>",
    "name": "<string>",
    "description": "<string>",
    "is_default": 0,
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Body

application/json
project_id
string
required

Project ID

bot_id
string
required

Agent ID

name
string
required

Workspace name

description
string

Workspace description

Response

Workspace created

workspace
object