diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-06-26 10:42:50 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-06-26 10:42:50 +0100 |
commit | 9570aa82ebf0d8dc01c8094df232ce16e683c905 (patch) | |
tree | a28406464c3c74b8e05fc1470338812220bf477d /docs | |
parent | add GDPR erase param to deactivate API (diff) | |
download | synapse-9570aa82ebf0d8dc01c8094df232ce16e683c905.tar.xz |
update doc for deactivate API
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin_api/user_admin_api.rst | 17 |
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 |