createDossier

abstract fun createDossier(sessionToken: String, externalId: String, accountUuid: String, primary: Boolean, realTimeVerification: Boolean = false, filesToSend: List<DocumentCaptureDetailsModel>, clientCallback: DossierUploadSdkCallback)

Headless call to upload Dossier of documents to the account.

Parameters

sessionToken

Session token

externalId

External identifier in your platform

accountUuid

Account unique identifier

primary

If dossier is primary or not

realTimeVerification

If dossier should be verified in real time

filesToSend

Files to be send

clientCallback

Client callback for success and error responses from the Alviere Accounts SDK

See also


abstract suspend fun createDossier(sessionToken: String, externalId: String, accountUuid: String, primary: Boolean, realTimeVerification: Boolean = false, filesToSend: List<DocumentCaptureDetailsModel>): Response<DossierDetailsModel>

Headless call to upload Dossier of documents to the account.

Return

Response<DossierDetailsModel>

Parameters

sessionToken

Session token

externalId

External identifier in your platform

accountUuid

Account unique identifier

primary

If dossier is primary or not

realTimeVerification

If dossier should be verified in real time

filesToSend

Files to be send

See also