Dirk Klimpel 1fc97ee876 Add an admin API to manage ratelimit for a specific user (#9648) 3 years ago
..
README.rst 1bc00fd76d Clarifications to the admin api documentation (#7647) 4 years ago
account_validity.rst 8e9ca83537 Move admin API to a new prefix 5 years ago
delete_group.md 1bc00fd76d Clarifications to the admin api documentation (#7647) 4 years ago
event_reports.md 023f791143 Migrate documentation `docs/admin_api/event_reports` to markdown (#8742) 3 years ago
media_admin_api.md e9df3f496b Link to the List user's media admin API from media Admin API docs (#9571) 3 years ago
purge_history_api.rst 1bc00fd76d Clarifications to the admin api documentation (#7647) 4 years ago
purge_room.md a5f7aff5e5 Deprecate Shutdown Room and Purge Room Admin API (#8829) 3 years ago
register_api.rst e4676bd877 Add `displayname` to Shared-Secret Registration for admins (#8722) 3 years ago
room_membership.md 1bc00fd76d Clarifications to the admin api documentation (#7647) 4 years ago
rooms.md b0b2cac057 Merge pull request #9150 from Yoric/develop-context 3 years ago
server_notices.md 3fdff14207 Fix spelling in server notices admin API docs (#5142) 5 years ago
shutdown_room.md a5f7aff5e5 Deprecate Shutdown Room and Purge Room Admin API (#8829) 3 years ago
statistics.md c3119d1536 Add an admin API for users' media statistics (#8700) 3 years ago
user_admin_api.rst 1fc97ee876 Add an admin API to manage ratelimit for a specific user (#9648) 3 years ago
version_api.rst 59e2d2694d Remove the requirement to authenticate for /admin/server_version. (#5122) 5 years ago

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 `_.