This endpoints allows you to delete or restore a user in your community.Authorization#
Bearer token Required
Found in the platform under community settings > API keys.
Permission: Delete/ Restore User Request
Body Params application/json
{
"action": "delete",
"user": "johndoe"
}
Request Code Samples
curl --location --request POST 'https://sgtr-rai-api.returning.ai/api/v1/apis/v1/users/manage' \
--header 'Content-Type: application/json' \
--data-raw '{
"action": "delete",
"user": "johndoe"
}'
Responses
application/json {
"action": "delete",
"user": "momoyo"
}
Modified at 2026-04-09 08:26:00