Gets what would happen if the requesting user deleted their account.
Output
Encoding
application/jsonnotifications
integer
Required
How many notifications would be removed.
records
integer
Required
How many indexed records would be removed.
soleOwnedCommunities
array
Required
Communities the user solely owns, which block deletion until transferred or deleted.
Errors
AuthRequired
The request has no valid service auth. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthRequired",
"description": "The request has no valid service auth."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"records",
"notifications",
"soleOwnedCommunities"
],
"properties": {
"records": {
"type": "integer",
"description": "How many indexed records would be removed."
},
"notifications": {
"type": "integer",
"description": "How many notifications would be removed."
},
"soleOwnedCommunities": {
"type": "array",
"items": {
"ref": "social.colibri.beta.community.defs#communityView",
"type": "ref"
},
"description": "Communities the user solely owns, which block deletion until transferred or deleted."
}
}
},
"encoding": "application/json"
},
"description": "Gets what would happen if the requesting user deleted their account."
}