v1
latestOpenAPI 3.0.12026-08-064278250.7 KBworkspaces
Create a workspace
Create a new workspace. Each workspace represents a separate organization. Managed service providers (MSPs) can create child workspaces for each of their customers.
post/v1/workspaces
Headers
Workspacestring required
The workspace identifier, which isolates API requests inside the provided workspace scope.
Request body
Example request
{
"companyName": "Company Name",
"displayName": "Child workspace",
"type": "child",
"domain": "child-workspace.com",
"adminEmail": "admin@child-workspace.com",
"maxProtectedUsers": 25,
"overCapacityAllowance": 10,
"maxDevicesLimit": 25,
"notificationsLevel": "all",
"invitedByAdminName": "Martin Miller",
"invitedByAdminEmail": "corotest@corotest.com"
}Response
Created
Example response
{
"id": "corodevonmicrosoftcom_EZ90_b",
"companyName": "Company Name",
"displayName": "Child workspace",
"type": "child",
"domain": "child-workspace.com",
"maxProtectedUsers": 25,
"overCapacityAllowance": 0.1,
"maxDevicesLimit": 25,
"limited": true,
"notificationsLevel": "none",
"parentWorkspaceId": "coroparent_123",
"lastAdminLoginTime": 1693562400000,
"workspaceCreationTime": 1641009600000,
"workspaceCreationType": "direct"
}