Testing bank account lookup verification in Sandbox
This guide will explain how to test the bank account lookup verification without incurring charges in the Sandbox environment.
In the Sandbox, we do not perform real verifications, but we will provide you a simulated experience that closely mirrors the production behavior.
When initiating a bank account lookup document verification, you must use one of the IBANs below in the iban
parameter. The IBAN value determines the status result that will be simulated, and you can also test the anonymized version of the status:
Simulate a verified
status from IBAN
verified
status from IBAN{
"workspace_id": null,
"iban": "FR7630004005506782866644202",
"natural_person": {
"first_name": "John",
"last_name": "Doe"
}
}
{
"workspace_id": null,
"iban": "FR7630004005506782866644202",
"legal_person": {
"company_number": "794513986"
}
}
Simulate an inconclusive
status from IBAN
inconclusive
status from IBAN{
"workspace_id": null,
"iban": "FR7630004005502665041815088",
"natural_person": {
"first_name": "John",
"last_name": "Doe"
}
}
{
"workspace_id": null,
"iban": "FR7630004005502665041815088",
"legal_person": {
"company_number": "794513986"
}
}
Simulate a failed
status from IBAN
failed
status from IBAN{
"workspace_id": null,
"iban": "FR7630004005503221042773459",
"natural_person": {
"first_name": "John",
"last_name": "Doe"
}
}
{
"workspace_id": null,
"iban": "FR7630004005503221042773459",
"legal_person": {
"company_number": "794513986"
}
}
Simulate a pending
status from IBAN
pending
status from IBAN{
"workspace_id": null,
"iban": "FR7630004005500629197018546",
"natural_person": {
"first_name": "John",
"last_name": "Doe"
}
}
{
"workspace_id": null,
"iban": "FR7630004005500629197018546",
"legal_person": {
"company_number": "794513986"
}
}
Simulate statuses from a file
To simulate statuses of Bank Account Lookup Verifications from a File you can upload a file with the following filenames to yield the desired status.
Status | File name |
---|---|
Pending | pending_bank_account_verification.pdf |
Verified | verified_bank_account_verification.pdf |
Failed | failed_bank_account_verification.pdf |
Inconclusive | inconclusive_bank_account_verification.pdf |
While extraction is not performed in Sandbox environment, mock IBANs will be returned in the response following the statuses above.
Once the verification initiation has been done, you can retrieve the results through the designated endpoint.
Also, if you have subscribed in the Sandbox to the verification.bank_account_lookup.done
event, you will also receive a webhook notification.
Updated 14 days ago