mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
1bc00fd76d
* Clarify how to authenticate * path params are not the same thing as query params * Fix documentation for `/_synapse/admin/v2/users/<user_id>`
21 lines
566 B
ReStructuredText
21 lines
566 B
ReStructuredText
Purge Remote Media API
|
|
======================
|
|
|
|
The purge remote media API allows server admins to purge old cached remote
|
|
media.
|
|
|
|
The API is::
|
|
|
|
POST /_synapse/admin/v1/purge_media_cache?before_ts=<unix_timestamp_in_ms>
|
|
|
|
{}
|
|
|
|
\... which will remove all cached media that was last accessed before
|
|
``<unix_timestamp_in_ms>``.
|
|
|
|
To use it, you will need to authenticate by providing an ``access_token`` for a
|
|
server admin: see `README.rst <README.rst>`_.
|
|
|
|
If the user re-requests purged remote media, synapse will re-request the media
|
|
from the originating server.
|