Skip to main content
DELETE
/
api
/
v3
/
workspaces
/
{id}
/
members
/
users
/
{user_id}
Remove a user from a workspace
curl --request DELETE \
  --url https://paradigm.lighton.ai/api/v3/workspaces/{id}/members/users/{user_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://paradigm.lighton.ai/api/v3/workspaces/{id}/members/users/{user_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://paradigm.lighton.ai/api/v3/workspaces/{id}/members/users/{user_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

The unique identifier of the workspace.

user_id
integer
required

The unique identifier of the user to remove from the workspace.

Response

User removed from workspace successfully