We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
matrix-org/matrix-js-sdk#649 added an optional 'erase' boolean to the /account/deactivate API
/account/deactivate
The text was updated successfully, but these errors were encountered:
Note: The description of the auth (Authentication Data) param is unclear. The session value is not expected in case of deactivation.
auth (Authentication Data)
session
The example should be updated by using an actual type (like m.login.password):
m.login.password
{ "auth": { "type": "m.login.password", "identifier": { "type": "m.id.user", "user": "<user_id or user localpart>" }, "password": "<password>" }, "id_server": "example.org", "erase": true }
or
{ "auth": { "type": "m.login.password", "user": "<userId>", "password": "<password>" }, "id_server": "example.org", "erase": true }
Sorry, something went wrong.
matrix-org/matrix-spec-proposals#2438 seems like it would fix this
turt2live
No branches or pull requests
matrix-org/matrix-js-sdk#649 added an optional 'erase' boolean to the
/account/deactivate
APIThe text was updated successfully, but these errors were encountered: