Interface KycServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface KycServiceAsync.WithRawResponseA view of KycServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract KycServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
document
abstract DocumentServiceAsync.WithRawResponse document()
KYC (Know Your Customer) is a process of verifying the identity of customer
Entities.KYC is required for all customer
Entitiesthat transact on Dinari's platform.Dinari provides a managed KYC process for its Partners, which provides a convenient KYC flow URL to present to the end customer.
For Dinari Partners that supply their own KYC data, the API provides a way to record a customer's KYC information using the Partner's KYC data. This requires an existing KYC agreement between Dinari and the Partner.
-
retrieve
CompletableFuture<HttpResponseFor<KycInfo>> retrieve(String entityId)
Returns a raw HTTP response for
get /api/v2/entities/{entity_id}/kyc, but is otherwise the same as KycServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<KycInfo>> retrieve(String entityId, KycRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<KycInfo>> retrieve(String entityId, KycRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<KycInfo>> retrieve(KycRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<KycInfo>> retrieve(KycRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<KycInfo>> retrieve(String entityId, RequestOptions requestOptions)
-
createManagedCheck
CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(String entityId)
Returns a raw HTTP response for
post /api/v2/entities/{entity_id}/kyc/url, but is otherwise the same as KycServiceAsync.createManagedCheck.
-
createManagedCheck
CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(String entityId, KycCreateManagedCheckParams params, RequestOptions requestOptions)
-
createManagedCheck
CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(String entityId, KycCreateManagedCheckParams params)
-
createManagedCheck
abstract CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(KycCreateManagedCheckParams params, RequestOptions requestOptions)
-
createManagedCheck
CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(KycCreateManagedCheckParams params)
-
createManagedCheck
CompletableFuture<HttpResponseFor<KycCreateManagedCheckResponse>> createManagedCheck(String entityId, RequestOptions requestOptions)
-
submit
CompletableFuture<HttpResponseFor<KycInfo>> submit(String entityId, KycSubmitParams params)
Returns a raw HTTP response for
post /api/v2/entities/{entity_id}/kyc, but is otherwise the same as KycServiceAsync.submit.
-
submit
CompletableFuture<HttpResponseFor<KycInfo>> submit(String entityId, KycSubmitParams params, RequestOptions requestOptions)
-
submit
CompletableFuture<HttpResponseFor<KycInfo>> submit(KycSubmitParams params)
-
submit
abstract CompletableFuture<HttpResponseFor<KycInfo>> submit(KycSubmitParams params, RequestOptions requestOptions)
-
-
-
-