0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-09 19:33:34 +02:00
synapse/docs/admin_api/purge_remote_media.rst

20 lines
457 B
ReStructuredText
Raw Normal View History

2016-07-28 15:56:09 +02:00
Purge Remote Media API
======================
The purge remote media API allows server admins to purge old cached remote
media.
The API is::
2016-07-28 16:08:37 +02:00
POST /_matrix/client/r0/admin/purge_media_cache
2016-07-28 15:56:09 +02:00
{
"before_ts": <unix_timestamp_in_ms>
}
Which will remove all cached media that was last accessed before
``<unix_timestamp_in_ms>``.
If the user re-requests purged remote media, synapse will re-request the media
from the originating server.