summary refs log tree commit diff
path: root/docs/admin_api
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-06-26 18:36:29 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-06-26 18:36:29 +0100
commitaae6d3ff69480ae6a3b30a854a052dda67e549c9 (patch)
treecb79512df564898dbb705149c1727fe689fef854 /docs/admin_api
parentMerge remote-tracking branch 'origin/hawkowl/sorteddict-api' into matrix-org-... (diff)
parentRevert "Try to not use as much CPU in the StreamChangeCache" (diff)
downloadsynapse-aae6d3ff69480ae6a3b30a854a052dda67e549c9.tar.xz
Merge remote-tracking branch 'origin/revert-3451-hawkowl/sorteddict-api' into matrix-org-hotfixes
Diffstat (limited to 'docs/admin_api')
-rw-r--r--docs/admin_api/user_admin_api.rst17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/admin_api/user_admin_api.rst b/docs/admin_api/user_admin_api.rst

index 1c9c5a6bde..d17121a188 100644 --- a/docs/admin_api/user_admin_api.rst +++ b/docs/admin_api/user_admin_api.rst
@@ -44,13 +44,26 @@ Deactivate Account This API deactivates an account. It removes active access tokens, resets the password, and deletes third-party IDs (to prevent the user requesting a -password reset). +password reset). It can also mark the user as GDPR-erased (stopping their data +from distributed further, and deleting it entirely if there are no other +references to it). The api is:: POST /_matrix/client/r0/admin/deactivate/<user_id> -including an ``access_token`` of a server admin, and an empty request body. +with a body of: + +.. code:: json + + { + "erase": true + } + +including an ``access_token`` of a server admin. + +The erase parameter is optional and defaults to 'false'. +An empty body may be passed for backwards compatibility. Reset password