Users
Deactivate User
Clusters
Applications
Models
Artifacts
Prompts
Secret Groups
Model Deployments
Users
Personal Access Tokens
Virtual Accounts
Users
Deactivate User
Deactivate user associated with the provided email within the tenant.
PATCH
/
api
/
svc
/
v1
/
users
/
deactivate
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/deactivate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>"
}'
{}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
User has been successfully deactivated.
The response is of type object
.
Was this page helpful?
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/deactivate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>"
}'
{}