Interface LoginTokenPostResponse

The result of a successful m.login.token issuance request as per https://spec.matrix.org/v1.7/client-server-api/#post_matrixclientv1loginget_token

interface LoginTokenPostResponse {
    expires_in_ms: number;
    login_token: string;
}

Properties

expires_in_ms: number

Expiration in milliseconds.

login_token: string

The token to use with m.login.token to authenticate.