Skip to content

Revoke a system role from a user

DELETE
/api/v1/system-roles/revoke
curl --request DELETE \
--url http://localhost:3000/api/v1/system-roles/revoke \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "userId": "example", "role": "SUPERUSER", "reason": "example" }'
Media type application/json
object
userId
required

User ID to revoke the role from

string
role
required

Role type to revoke

string
Allowed values: SUPERUSER SUPPORT
reason

Reason for revoking the role

string

Role revoked

Cannot revoke own superuser role or last superuser

Only superusers can revoke roles

User or role not found