summary refs log tree commit diff
path: root/docs/admin_api
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-23 13:16:30 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-23 13:16:30 +0000
commit42732de3bceede2ce3fbf49cb69969a7b5440a48 (patch)
tree2253a1aef6860d89f2c9294c4f88ac0c786af561 /docs/admin_api
parentRemove unnecessary abstractions in admin handler (#6751) (diff)
parentUpdate admin room docs with correct endpoints (#6770) (diff)
downloadsynapse-42732de3bceede2ce3fbf49cb69969a7b5440a48.tar.xz
Update admin room docs with correct endpoints (#6770)
* commit 'd31f5f4d8':
  Update admin room docs with correct endpoints (#6770)
Diffstat (limited to 'docs/admin_api')
-rw-r--r--docs/admin_api/rooms.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/admin_api/rooms.md b/docs/admin_api/rooms.md

index 082721ea95..2db457c1b6 100644 --- a/docs/admin_api/rooms.md +++ b/docs/admin_api/rooms.md
@@ -46,7 +46,7 @@ The following fields are possible in the JSON response body: A standard request with no filtering: ``` -GET /_synapse/admin/rooms +GET /_synapse/admin/v1/rooms {} ``` @@ -78,7 +78,7 @@ Response: Filtering by room name: ``` -GET /_synapse/admin/rooms?search_term=TWIM +GET /_synapse/admin/v1/rooms?search_term=TWIM {} ``` @@ -103,7 +103,7 @@ Response: Paginating through a list of rooms: ``` -GET /_synapse/admin/rooms?order_by=size +GET /_synapse/admin/v1/rooms?order_by=size {} ``` @@ -139,7 +139,7 @@ To get the next batch of room results, we repeat our request, setting the `from` parameter to the value of `next_token`. ``` -GET /_synapse/admin/rooms?order_by=size&from=100 +GET /_synapse/admin/v1/rooms?order_by=size&from=100 {} ```