Interface DocumentService
-
- All Implemented Interfaces:
public interface DocumentServiceKYC (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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceDocumentService.WithRawResponseA view of DocumentService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract DocumentService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract DocumentServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. List<KycDocument>retrieve(String kycId, DocumentRetrieveParams params)Get uploaded documents for a KYC check List<KycDocument>retrieve(String kycId, DocumentRetrieveParams params, RequestOptions requestOptions)List<KycDocument>retrieve(DocumentRetrieveParams params)abstract List<KycDocument>retrieve(DocumentRetrieveParams params, RequestOptions requestOptions)KycDocumentupload(String kycId, DocumentUploadParams params)Upload KYC-related documentation for partners that are provisioned to provide their own KYC data. KycDocumentupload(String kycId, DocumentUploadParams params, RequestOptions requestOptions)KycDocumentupload(DocumentUploadParams params)abstract KycDocumentupload(DocumentUploadParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract DocumentService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract DocumentService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
List<KycDocument> retrieve(String kycId, DocumentRetrieveParams params)
Get uploaded documents for a KYC check
-
retrieve
List<KycDocument> retrieve(String kycId, DocumentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
List<KycDocument> retrieve(DocumentRetrieveParams params)
-
retrieve
abstract List<KycDocument> retrieve(DocumentRetrieveParams params, RequestOptions requestOptions)
-
upload
KycDocument upload(String kycId, DocumentUploadParams params)
Upload KYC-related documentation for partners that are provisioned to provide their own KYC data.
-
upload
KycDocument upload(String kycId, DocumentUploadParams params, RequestOptions requestOptions)
-
upload
KycDocument upload(DocumentUploadParams params)
-
upload
abstract KycDocument upload(DocumentUploadParams params, RequestOptions requestOptions)
-
-
-
-