mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
a5f7aff5e5
Deprecate both APIs in favour of the Delete Room API. Related: #8663 and #8810
22 lines
492 B
Markdown
22 lines
492 B
Markdown
Deprecated: Purge room API
|
|
==========================
|
|
|
|
**The old Purge room API is deprecated and will be removed in a future release.
|
|
See the new [Delete Room API](rooms.md#delete-room-api) for more details.**
|
|
|
|
This API will remove all trace of a room from your database.
|
|
|
|
All local users must have left the room before it can be removed.
|
|
|
|
The API is:
|
|
|
|
```
|
|
POST /_synapse/admin/v1/purge_room
|
|
|
|
{
|
|
"room_id": "!room:id"
|
|
}
|
|
```
|
|
|
|
You must authenticate using the access token of an admin user.
|