Skip to end of banner
Go to start of banner

Sending Transfer Summary

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »

Your app should clean up the SDK by releasing the capture singleton and providing transfer summary for the extractions that the Gini Capture delivered. Follow these recommendations:

  • Provide values for all necessary fields, including those that were not extracted.

  • Provide the final data approved by the user (and not the initially extracted only).

  • Send transfer summary only after TAN verification.

You don’t need to implement any extra steps.

void stopGiniCaptureSDK() {
    // After the user has seen and potentially corrected the extractions, send the final
    // transfer summary values to Gini which will be used to improve the future extraction accuracy:
    GiniCapture.sendTransferSummary(
            paymentRecipient,
            paymentReference,
            paymentPurpose,
            iban,
            bic,
            amount
        )
    // cleanup the capture SDK after sending the transfer summary
    GiniCapture.cleanup(this)
}

We provide a sample test case here to verify that sending transfer summary works. You can use it along with the example PDF and JSON files as a starting point to write your own test case. The sample test case is based on the Bank API documentation’s recommended steps for testing sending transfer summary. For additional information about feedback see the Gini Pay API documentation.

  • No labels