Operation is_verified_account

The operation of checking whether the account holder is a verified Capitalist user.

Query parameters

ParameterValue
operationis_verified_account
login<Username>
token<TOKEN>. Obtained after invoking get_token.
encrypted_passwordEncrypted password. It is obtained after user password RSA encryption with the use of a public exponent and the modulus obtained in invoking the get_token operation.
accountAccount number in the Capitalist system

See also

Response in the CSV format

Format

Line No.Data format
10;<check_result>

Values

ValueDescription
<check_result>The test result takes value 1 if the user is verified, otherwise it takes value 0.

Response examples

JSON (recommended format, please set x-response-format=json header)

{
  "code": 0,
  "message": "",
  "data": {
    "verified": true
  }
}

CSV

0;1