Interface VerificationStatusService


public interface VerificationStatusService
Get the status of specific verification requests in the verification process. Returns the status of pending and completed verifications. You can retrieve the status of verification requests by using the ID of the request, the phone number of the user being verified, or a custom reference string.
Since:
1.1
See Also:
  • Method Details

    • getByIdentity

      Queries the verification result by sending the verification Identity (usually a phone number) and its method. With this query you can get the result of a verification.
      Parameters:
      identity - Currently Only NumberIdentity is supported
      method - Method used for verification
      Returns:
      Verification status response
      Since:
      1.1
    • getById

      Queries the verification result by sending the verification ID. With this query you can get the result of a verification.
      Parameters:
      id - The ID of the verification
      Returns:
      Verification status response
      Since:
      1.1
    • getByReference

      VerificationStatusResponse getByReference(String reference)
      Queries the verification result by sending the verification Reference. With this query you can get the result of a verification
      Parameters:
      reference - The custom reference of the verification
      Returns:
      Verification status response
      Since:
      1.1