1//! `POST /_matrix/client/*/rooms/{roomId}/join`
2//!
3//! Join a room using its ID.
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#post_matrixclientv3roomsroomidjoin
910use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedRoomId,
13 };
1415use crate::membership::ThirdPartySigned;
1617const METADATA: Metadata = metadata! {
18 method: POST,
19 rate_limited: true,
20 authentication: AccessToken,
21 history: {
221.0 => "/_matrix/client/r0/rooms/:room_id/join",
231.1 => "/_matrix/client/v3/rooms/:room_id/join",
24 }
25 };
2627/// Request type for the `join_room_by_id` endpoint.
28#[request(error = crate::Error)]
29pub struct Request {
30/// The room where the user should be invited.
31#[ruma_api(path)]
32pub room_id: OwnedRoomId,
3334/// The signature of a `m.third_party_invite` token to prove that this user owns a third
35 /// party identity which has been invited to the room.
36#[serde(skip_serializing_if = "Option::is_none")]
37pub third_party_signed: Option<ThirdPartySigned>,
3839/// Optional reason for joining the room.
40#[serde(skip_serializing_if = "Option::is_none")]
41pub reason: Option<String>,
42 }
4344/// Response type for the `join_room_by_id` endpoint.
45#[response(error = crate::Error)]
46pub struct Response {
47/// The room that the user joined.
48pub room_id: OwnedRoomId,
49 }
5051impl Request {
52/// Creates a new `Request` with the given room id.
53pub fn new(room_id: OwnedRoomId) -> Self {
54Self { room_id, third_party_signed: None, reason: None }
55 }
56 }
5758impl Response {
59/// Creates a new `Response` with the given room id.
60pub fn new(room_id: OwnedRoomId) -> Self {
61Self { room_id }
62 }
63 }
64}