curl --request DELETE \
--url https://rest.cerebrium.ai/v2/projects/{project_id}/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"emailAddress": "<string>"
}'
Remove a user from a project.
curl --request DELETE \
--url https://rest.cerebrium.ai/v2/projects/{project_id}/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"emailAddress": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK