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
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"action": "delete",
"user": "johndoe"
}
Request Code Samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/users/manage' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"action": "delete",
"user": "johndoe"
}'
Responses
application/json {
"action": "delete",
"user": "momoyo"
}
Modified at 2025-09-08 04:55:54