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
verified
status{
"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
inconclusive
status{
"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
failed
status{
"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
pending
status{
"workspace_id": null,
"iban": "FR7630004005500629197018546",
"natural_person": {
"first_name": "John",
"last_name": "Doe"
}
}
{
"workspace_id": null,
"iban": "FR7630004005500629197018546",
"legal_person": {
"company_number": "794513986"
}
}
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 1 day ago