mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
ece84f2c45
* Labeled a lot more code blocks with the appropriate type * Fixed a couple of minor typos (missing/extraneous commas) Signed-off-by: Sumner Evans <me@sumnerevans.com>
36 lines
831 B
Markdown
36 lines
831 B
Markdown
# Edit Room Membership API
|
|
|
|
This API allows an administrator to join an user account with a given `user_id`
|
|
to a room with a given `room_id_or_alias`. You can only modify the membership of
|
|
local users. The server administrator must be in the room and have permission to
|
|
invite users.
|
|
|
|
## Parameters
|
|
|
|
The following parameters are available:
|
|
|
|
* `user_id` - Fully qualified user: for example, `@user:server.com`.
|
|
* `room_id_or_alias` - The room identifier or alias to join: for example,
|
|
`!636q39766251:server.com`.
|
|
|
|
## Usage
|
|
|
|
```
|
|
POST /_synapse/admin/v1/join/<room_id_or_alias>
|
|
|
|
{
|
|
"user_id": "@user:server.com"
|
|
}
|
|
```
|
|
|
|
To use it, you will need to authenticate by providing an `access_token` for a
|
|
server admin: see [Admin API](../usage/administration/admin_api).
|
|
|
|
Response:
|
|
|
|
```json
|
|
{
|
|
"room_id": "!636q39766251:server.com"
|
|
}
|
|
```
|