Interface VerificationsStatusService
public interface VerificationsStatusService
VerificationsStatus Service
-
Method Summary
Modifier and TypeMethodDescriptionGet verification by IDgetByIdentity(NumberIdentity identity, VerificationMethod method) Queries the verification result by sending the verification Identity (usually a phone number) and its method.getByReference(String reference) Get verification by Reference
-
Method Details
-
getById
Get verification by IDQueries 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. (required)- Returns:
- VerificationStatusResponse
- Throws:
ApiException- if fails to make API call
-
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 OnlyNumberIdentityis supportedmethod- Method used for verification- Returns:
- Verification status response
- Since:
- 1.1
-
getByReference
Get verification by ReferenceQueries 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. (required)- Returns:
- VerificationStatusResponse
- Throws:
ApiException- if fails to make API call
-