summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Tötterman <ptman@users.noreply.github.com>2020-05-19 13:20:23 +0300
committerGitHub <noreply@github.com>2020-05-19 11:20:23 +0100
commitab3e19d814f26442f128420f43eb990cc3457bff (patch)
treee1ef4b81bab47b2c84e8a02f09d85492d806d84b
parentOmit displayname or avatar_url if they aren't set instead of returning null (... (diff)
downloadsynapse-ab3e19d814f26442f128420f43eb990cc3457bff.tar.xz
Improve API doc readability (#7527)
-rw-r--r--docs/admin_api/user_admin_api.rst21
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/admin_api/user_admin_api.rst b/docs/admin_api/user_admin_api.rst
index 859d7f99e7..776e71ec04 100644
--- a/docs/admin_api/user_admin_api.rst
+++ b/docs/admin_api/user_admin_api.rst
@@ -33,21 +33,22 @@ with a body of:
 
 including an ``access_token`` of a server admin.
 
-The parameter ``displayname`` is optional and defaults to the value of
-``user_id``.
+Parameters:
 
-The parameter ``threepids`` is optional and allows setting the third-party IDs
-(email, msisdn) belonging to a user.
+- ``password``, optional. If provided, the user's password is updated and all
+  devices are logged out.
+  
+- ``displayname``, optional, defaults to the value of ``user_id``.
 
-The parameter ``avatar_url`` is optional. Must be a [MXC
-URI](https://matrix.org/docs/spec/client_server/r0.6.0#matrix-content-mxc-uris).
+- ``threepids``, optional, allows setting the third-party IDs (email, msisdn)
+  belonging to a user.
 
-The parameter ``admin`` is optional and defaults to ``false``.
+- ``avatar_url``, optional, must be a 
+  `MXC URI <https://matrix.org/docs/spec/client_server/r0.6.0#matrix-content-mxc-uris>`_.
 
-The parameter ``deactivated`` is optional and defaults to ``false``.
+- ``admin``, optional, defaults to ``false``.
 
-The parameter ``password`` is optional. If provided, the user's password is
-updated and all devices are logged out.
+- ``deactivated``, optional, defaults to ``false``.
 
 If the user already exists then optional parameters default to the current value.