forked from MirrorHub/synapse
3af53c183a
Signed-off-by: Travis Ralston <travpc@gmail.com>
23 lines
501 B
Markdown
23 lines
501 B
Markdown
# List all media in a room
|
|
|
|
This API gets a list of known media in a room.
|
|
|
|
The API is:
|
|
```
|
|
GET /_matrix/client/r0/admin/room/<room_id>/media
|
|
```
|
|
including an `access_token` of a server admin.
|
|
|
|
It returns a JSON body like the following:
|
|
```
|
|
{
|
|
"local": [
|
|
"mxc://localhost/xwvutsrqponmlkjihgfedcba",
|
|
"mxc://localhost/abcdefghijklmnopqrstuvwx"
|
|
],
|
|
"remote": [
|
|
"mxc://matrix.org/xwvutsrqponmlkjihgfedcba",
|
|
"mxc://matrix.org/abcdefghijklmnopqrstuvwx"
|
|
]
|
|
}
|
|
```
|