curl --location --request DELETE '/api/project/0/user/0' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}'
{
"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"
}
}
}
]
}