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

  • import_batch_advanced — Uploading a batch payment into the system with the possibility to choose the verification method.
  • get_batch_info — The operation of getting detailed information about the downloaded batch payment document.
  • get_documents_history_ext — The operation of obtaining the history of operations.
  • documents_search — Search documents by number from your system.

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