Account Validation
Request a validation
Requests a validation to be performed by Shinkansen Validator. The validation will be performed asynchronously and the result will be sent to the webhook configured for the Validator service
post/validation/requests
Request body
Example request
{
"id": "3c11df48-dfab-41eb-a3c1-b9f90a0da063",
"account_details": {
"name": "Romulo Gallegos",
"identification": {
"id_schema": "CLID",
"id": "12383287-6"
},
"financial_institution": {
"fin_id_schema": "SHINKANSEN",
"fin_id": "SCOTIABANK_CL"
},
"account": "1513523451",
"account_type": "current_account",
"currency": "CLP",
"email": "romulo.gallegos@shinkasen.finance"
}
}Response
Validation request correctly received. Returns a validation request object, with status "pending". The result will be sent to the webhook configured for the Validator service.
Example response
{
"id": "3c11df48-dfab-41eb-a3c1-b9f90a0da063",
"account_details": {
"name": "Romulo Gallegos",
"identification": {
"id_schema": "CLID",
"id": "12383287-6"
},
"financial_institution": {
"fin_id_schema": "SHINKANSEN",
"fin_id": "SCOTIABANK_CL"
},
"account": "1513523451",
"account_type": "current_account",
"currency": "CLP",
"email": "romulo.gallegos@shinkasen.finance"
}
}