Interface VerificationReportService
public interface VerificationReportService
Verification Report Service
Report about a verification request
- Since:
- 1.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionreportFlashCallById
(String id, VerificationReportRequestFlashCall parameters) Report the received verification code to verify it, using the Verification ID of theVerificationMethod.FLASH_CALL
Verification requestreportFlashCallByIdentity
(NumberIdentity identity, VerificationReportRequestFlashCall parameters) Report a verification usingVerificationMethod.FLASH_CALL
& IdentityreportPhoneCallById
(String id, VerificationReportRequestPhoneCall parameters) Report the received verification code to verify it, using the Verification ID of theVerificationMethod.PHONE_CALL
Verification requestreportPhoneCallByIdentity
(NumberIdentity identity, VerificationReportRequestPhoneCall parameters) Report a verification usingVerificationMethod.PHONE_CALL
& IdentityreportSmsById
(String id, VerificationReportRequestSms parameters) Report the received verification code to verify it, using the Verification ID of theVerificationMethod.SMS
Verification requestreportSmsByIdentity
(NumberIdentity identity, VerificationReportRequestSms parameters) Report a verification usingVerificationMethod.SMS
& Identity
-
Method Details
-
reportSmsByIdentity
VerificationReportResponseSms reportSmsByIdentity(NumberIdentity identity, VerificationReportRequestSms parameters) Report a verification usingVerificationMethod.SMS
& IdentityReport the received verification code to verify it, using the identity of the user
- Parameters:
identity
- Currently OnlyNumberIdentity
is supportedparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-
reportFlashCallByIdentity
VerificationReportResponseFlashCall reportFlashCallByIdentity(NumberIdentity identity, VerificationReportRequestFlashCall parameters) Report a verification usingVerificationMethod.FLASH_CALL
& IdentityReport the received verification code to verify it, using the identity of the user
- Parameters:
identity
- Currently OnlyNumberIdentity
is supportedparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-
reportPhoneCallByIdentity
VerificationReportResponsePhoneCall reportPhoneCallByIdentity(NumberIdentity identity, VerificationReportRequestPhoneCall parameters) Report a verification usingVerificationMethod.PHONE_CALL
& IdentityReport the received verification code to verify it, using the identity of the user
- Parameters:
identity
- Currently OnlyNumberIdentity
is supportedparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-
reportSmsById
Report the received verification code to verify it, using the Verification ID of theVerificationMethod.SMS
Verification request- Parameters:
id
- ID returned from start verificationparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-
reportFlashCallById
VerificationReportResponseFlashCall reportFlashCallById(String id, VerificationReportRequestFlashCall parameters) Report the received verification code to verify it, using the Verification ID of theVerificationMethod.FLASH_CALL
Verification request- Parameters:
id
- ID returned from start verificationparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-
reportPhoneCallById
VerificationReportResponsePhoneCall reportPhoneCallById(String id, VerificationReportRequestPhoneCall parameters) Report the received verification code to verify it, using the Verification ID of theVerificationMethod.PHONE_CALL
Verification request- Parameters:
id
- ID returned from start verificationparameters
- Parameters to be used to get report- Returns:
- Verification report response
- Since:
- 1.1
-