SendKycDocumentToSignatureProvider
Send KYC documents to electronic signature provider. You get in return the URL to redirect the user to for signing the documents
Signature
mutation {
SendKycDocumentToSignatureProvider(accountId: ..., formStep: ..., redirectTo: ...)
}
Retourne : String
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
accountId | ID! | ✓ | — | — |
formStep | String! | ✓ | — | — |
redirectTo | String! | ✓ | — | — |
Exemple
mutation {
SendKycDocumentToSignatureProvider(
accountId: $accountId
formStep: $formStep
redirectTo: $redirectTo
) {
# Sélectionner les champs souhaités
}
}