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
Member Management
Delete Member
Deletes a member from a workspace.
DELETE
/
workspaces
/
{workspace_id}
/
users
/
{user_id}
/
role
curl --request DELETE \
--url https://api.furo.one/workspaces/{workspace_id}/users/{user_id}/role \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"workspace_id": "<string>",
"user_id": "<string>"
}'
{
"acknowledged": true,
"deletedCount": 1
}
Path
This is the ID of the workspace.
This is the ID of the user.
{
"acknowledged": true,
"deletedCount": 1
}
Was this page helpful?
curl --request DELETE \
--url https://api.furo.one/workspaces/{workspace_id}/users/{user_id}/role \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"workspace_id": "<string>",
"user_id": "<string>"
}'
{
"acknowledged": true,
"deletedCount": 1
}
Assistant
Responses are generated using AI and may contain mistakes.