CheckPasswordRequest

Properties

key: string;

account key in the realm. (configured 'unique key' used for authentication)

password: string;

Password to be checked

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
interface CheckPasswordRequest {

  /**
   * account key in the realm. (configured 'unique key' used for authentication)
   */
  key: string;

  /**
   * Password to be checked
   */
  password: string;

}