POST
/
v1
/
workspaces
curl --request POST \
  --url https://app.typebot.io/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>",
    "plan": "FREE",
    "stripeId": "<string>",
    "isSuspended": true,
    "isPastDue": true,
    "isVerified": true
  }
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json
icon
string
name
string
required

Response

200 - application/json
workspace
object
required