EaserixDocs
DevelopersAPI referenceNotesWorkspaces

Create a space

kind follows the platform scoping standard: 'org' (default, every org member), 'team' (requires teamId, caller must belong to the team), or 'personal' (owner only).

View as Markdown
POST
/v1/workspaces
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/workspaces" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "workspace": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "name": "string",    "ownerId": "4d206909-730f-409a-88f6-dcfaa8fc28cc",    "kind": "org",    "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",    "created": "2019-08-24T14:15:22Z"  }}