Workspace Management
Create Workspace
API Documentation
Auth API
- OAuth
- Magic Link
- Password
- POSTUser Authenticate
- GETGet User Information
- POSTRefresh Token
Management API
- User
- Workspace
- Workspace Management
- Member Management
- Invitation Management
Workspace Management
Create Workspace
Create a new workspace
POST
/
workspaces
curl --request POST \
--url https://api.furo.one/workspaces \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"owner_id": "<string>"
}'
{
"workspace_id": "wid-f614c439-fee9-406a-a490-c2bfca814b12",
"project_id": "dccc65c902eb168805b316e4a1c42e62",
"name": "Test Workspace",
"invitation_url": "http://localhost:3000/invite?project_id=dccc65c902eb168805b316e4a1c42e62&workspace_id=wid-f614c439-fee9-406a-a490-c2bfca814b12",
"logo_url": "http://res.cloudinary.com/dsllzosoi/image/upload/v1677472329/yagayqz3u4zdsiqspsk3.png",
"owner_id": "76c6113c-9919-4bb0-9d12-58c118a571e6",
"owner_email": "user1@furo.one",
"created_at": "2023-03-15T04:33:13.949Z",
"modified_at": "2023-03-15T04:33:13.949Z",
"allowed_domains": [],
"total_member_count": 1
}
Body
This is the name of the workspace you want to create.
This is the ID you use to identify this user group in your database.
{
"workspace_id": "wid-f614c439-fee9-406a-a490-c2bfca814b12",
"project_id": "dccc65c902eb168805b316e4a1c42e62",
"name": "Test Workspace",
"invitation_url": "http://localhost:3000/invite?project_id=dccc65c902eb168805b316e4a1c42e62&workspace_id=wid-f614c439-fee9-406a-a490-c2bfca814b12",
"logo_url": "http://res.cloudinary.com/dsllzosoi/image/upload/v1677472329/yagayqz3u4zdsiqspsk3.png",
"owner_id": "76c6113c-9919-4bb0-9d12-58c118a571e6",
"owner_email": "user1@furo.one",
"created_at": "2023-03-15T04:33:13.949Z",
"modified_at": "2023-03-15T04:33:13.949Z",
"allowed_domains": [],
"total_member_count": 1
}
Was this page helpful?
curl --request POST \
--url https://api.furo.one/workspaces \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"owner_id": "<string>"
}'
{
"workspace_id": "wid-f614c439-fee9-406a-a490-c2bfca814b12",
"project_id": "dccc65c902eb168805b316e4a1c42e62",
"name": "Test Workspace",
"invitation_url": "http://localhost:3000/invite?project_id=dccc65c902eb168805b316e4a1c42e62&workspace_id=wid-f614c439-fee9-406a-a490-c2bfca814b12",
"logo_url": "http://res.cloudinary.com/dsllzosoi/image/upload/v1677472329/yagayqz3u4zdsiqspsk3.png",
"owner_id": "76c6113c-9919-4bb0-9d12-58c118a571e6",
"owner_email": "user1@furo.one",
"created_at": "2023-03-15T04:33:13.949Z",
"modified_at": "2023-03-15T04:33:13.949Z",
"allowed_domains": [],
"total_member_count": 1
}