Skip to main content
POST
/
v1
/
workspaces
Create Workspace
curl --request POST \
  --url https://linkryse.com/v1/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "success": true,
  "id": 123
}

Body

name
string
required
The name of the new workspace.

Response

success
boolean
Whether the workspace was created.
id
integer
The ID of the newly created workspace.