Remove User from Project
DELETE
/api/project/{project_id}/user/{user_id}
Project APIs
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/api/project//user/'
Response Response Example
{
"success": true,
"message": "Users removed from project successfully.",
"data": [
{
"id": 148,
"user": {
"id": 16,
"email": "user@example.com",
"is_staff": true,
"is_superuser": true,
"is_active": true,
"date_joined": "2024-01-30T17:23:41.663281Z",
"first_name": "FirstName",
"last_name": "LastName",
"organization": {
"id": 1,
"org_name": "Organization Name",
"domain": "organization.com",
"is_deleted": false,
"created_by": "System",
"created_on": "2024-01-20T01:32:56.659642Z",
"modified_by": "",
"modified_on": "2024-01-20T01:32:56.659663Z"
}
}
}
]
}
Request
Path Params
project_id
integer
required
Example:
151
user_id
integer
required
Example:
16