Package so.prelude.sdk.services.blocking
Interface VerificationService
-
- All Implemented Interfaces:
public interface VerificationService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
VerificationService.WithRawResponse
A view of VerificationService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract VerificationService.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. VerificationCreateResponse
create(VerificationCreateParams params)
Create a new verification for a specific phone number. abstract VerificationCreateResponse
create(VerificationCreateParams params, RequestOptions requestOptions)
VerificationCheckResponse
check(VerificationCheckParams params)
Check the validity of a verification code. abstract VerificationCheckResponse
check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract VerificationService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
VerificationCreateResponse create(VerificationCreateParams params)
Create a new verification for a specific phone number. If another non-expired verification exists (the request is performed within the verification window), this endpoint will perform a retry instead.
-
create
abstract VerificationCreateResponse create(VerificationCreateParams params, RequestOptions requestOptions)
-
check
VerificationCheckResponse check(VerificationCheckParams params)
Check the validity of a verification code.
-
check
abstract VerificationCheckResponse check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
-
-