Travis Ralston 1048ed2afa Clarify that undoing a shutdown might not be possible (#8010) %!s(int64=3) %!d(string=hai) anos
..
README.rst 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
account_validity.rst 8e9ca83537 Move admin API to a new prefix %!s(int64=5) %!d(string=hai) anos
delete_group.md 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
media_admin_api.md 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
purge_history_api.rst 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
purge_remote_media.rst 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
purge_room.md 491f0dab1b Add delete room admin endpoint (#7613) %!s(int64=3) %!d(string=hai) anos
register_api.rst 8e9ca83537 Move admin API to a new prefix %!s(int64=5) %!d(string=hai) anos
room_membership.md 1bc00fd76d Clarifications to the admin api documentation (#7647) %!s(int64=3) %!d(string=hai) anos
rooms.md e866e3b896 Add an option to disable purge in delete room admin API (#7964) %!s(int64=3) %!d(string=hai) anos
server_notices.md 3fdff14207 Fix spelling in server notices admin API docs (#5142) %!s(int64=5) %!d(string=hai) anos
shutdown_room.md 1048ed2afa Clarify that undoing a shutdown might not be possible (#8010) %!s(int64=3) %!d(string=hai) anos
user_admin_api.rst 8c7d0f163d Allow accounts to be re-activated from the admin APIs. (#7847) %!s(int64=3) %!d(string=hai) anos
version_api.rst 59e2d2694d Remove the requirement to authenticate for /admin/server_version. (#5122) %!s(int64=5) %!d(string=hai) anos

README.rst

Admin APIs
==========

This directory includes documentation for the various synapse specific admin
APIs available.

Authenticating as a server admin
--------------------------------

Many of the API calls in the admin api will require an `access_token` for a
server admin. (Note that a server admin is distinct from a room admin.)

A user can be marked as a server admin by updating the database directly, e.g.:

.. code-block:: sql

UPDATE users SET admin = 1 WHERE name = '@foo:bar.com';

A new server admin user can also be created using the
``register_new_matrix_user`` script.

Finding your user's `access_token` is client-dependent, but will usually be shown in the client's settings.

Once you have your `access_token`, to include it in a request, the best option is to add the token to a request header:

``curl --header "Authorization: Bearer " ``

Fore more details, please refer to the complete `matrix spec documentation `_.