ruma_identity_service_api/authentication/get_account_information.rs
1//! `GET /_matrix/identity/*/account`
2//!
3//! Get information about what user owns the access token used in the request.
4
5pub mod v2 {
6 //! `/v2/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/identity-service-api/#get_matrixidentityv2account
9
10 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedUserId,
13 };
14
15 const METADATA: Metadata = metadata! {
16 method: POST,
17 rate_limited: false,
18 authentication: AccessToken,
19 history: {
20 1.0 => "/_matrix/identity/v2/account",
21 }
22 };
23
24 /// Request type for the `get_account_information` endpoint.
25 #[request]
26 #[derive(Default)]
27 pub struct Request {}
28
29 /// Response type for the `get_account_information` endpoint.
30 #[response]
31 pub struct Response {
32 /// The user ID which registered the token.
33 pub user_id: OwnedUserId,
34 }
35
36 impl Request {
37 /// Creates an empty `Request`.
38 pub fn new() -> Self {
39 Self {}
40 }
41 }
42
43 impl Response {
44 /// Creates a new `Response` with the given `UserId`.
45 pub fn new(user_id: OwnedUserId) -> Self {
46 Self { user_id }
47 }
48 }
49}