Iniciar una validación de cuenta
Confirma que una CLABE es real y quién es su titular — nombre y RFC, directo del banco — antes de mover dinero real. Un depósito de prueba de 0.01 MXN, por cuenta de Tonder, y la lectura del recibo interbancario oficial.
Autorización
Authorization Your public API key, with the word Token and a space in front of it. Example: Token 6534bc0a7e1f4d2b9c8e3a5f7b1d2c4e6f8a9b0c — that whole value is the header. Sending the key alone returns 401 'Authentication credentials were not provided'. In this playground you may paste just the key; the prefix is added for you.
In: header
Cuerpo de la petición
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Cuerpo de la respuesta
application/json
application/json
application/json
curl -X POST "https://example.com/account-verifications/" \ -H "Content-Type: application/json" \ -d '{ "account_number": "646180000000000009", "business_id": "97", "mode": "withdrawal", "expected_holder_name": "Dede Kuhlman", "expected_holder_id": "RBZZ190718TEA" }'{
"account_number": "646180000000000009",
"verification_id": "accv_3JkKAxCDvjeoUGgQPYzOMEFDl0K",
"status": "pending",
"holder_name": null,
"holder_id": null,
"institution": "90646",
"name_match": null,
"rfc_match": null,
"reason": null
}{
"account_number": [
"This value does not match the required pattern."
]
}{
"code": 0,
"message": "string"
}Consultar saldo
Devuelve el saldo disponible para dispersar retiros. Consúltalo antes de crear retiros vía `POST /process/` para evitar rechazos por fondos insuficientes.
Leer una validación de cuenta
Lee la validación de una CLABE. Se refresca en vivo desde el banco mientras está `pending`; una vez `succeeded` o `failed` es final. Regresa el nombre del titular, su RFC, la institución y las banderas de coincidencia.
