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
|
2017-01-20 13:15:50 +01:00
|
|
|
media.
|
2016-07-28 15:56:09 +02:00
|
|
|
|
|
|
|
The API is::
|
|
|
|
|
2019-05-01 16:18:58 +02:00
|
|
|
POST /_synapse/admin/v1/purge_media_cache?before_ts=<unix_timestamp_in_ms>&access_token=<access_token>
|
2016-07-28 15:56:09 +02:00
|
|
|
|
2017-01-20 13:15:50 +01:00
|
|
|
{}
|
2016-07-28 15:56:09 +02:00
|
|
|
|
|
|
|
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.
|