curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/deactivate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{}Deactivate user associated with the provided email within the tenant.
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/deactivate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Email of the user
User has been successfully deactivated.
The response is of type DeactivateUserResponse · object.
Was this page helpful?