mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-28 22:14:10 +01:00
Ensure we return the room_id after knocking via the CS API
This commit is contained in:
parent
c575f88d13
commit
53ad7e3f66
|
|
@ -216,13 +216,16 @@ This endpoint requires authentication and can be rate limited.
|
||||||
|
|
||||||
#### Responses:
|
#### Responses:
|
||||||
##### Status code 200:
|
##### Status code 200:
|
||||||
The user knocked successfully. Example reply:
|
The user knocked successfully. The room ID of the knocked on room is returned. Example
|
||||||
|
reply:
|
||||||
```json
|
```json
|
||||||
{}
|
{
|
||||||
|
"room_id": "!ZclcEpFTORTjmWIrqH:matrix.org"
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Status code 403:
|
##### Status code 403:
|
||||||
The user wasn't allowed to knock (e.g. they are banned). Error reply:
|
The user wasn't allowed to knock (e.g. they are banned). Example error reply:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"errcode": "M_FORBIDDEN",
|
"errcode": "M_FORBIDDEN",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue