Bank Accounts
Create Bank AccountsPost
https://sandbox-api.srpago.com/v1/bank-accounts
Da de alta una cuenta bancaria
Características:
-type: Tipo de cuenta (siempre será clabe). -alias: Nombre del dueño de la cuenta. -number: Número de cuenta clabe -origin: 1.Personal. 2.Tercero.
alias REQUIRED string Alias number REQUIRED string Number of account type REQUIRED string Kind of account (CLABE)
img REQUIRED string Base64 encoded image ife_front string Base64 encoded image ife_back string Base64 encoded image
default boolean whether or not make this the default account
Al registrar una cuenta bancaria, la misma pasa por un proceso de verificación y en un máximo de 48 horas sabrás si tu cuenta bancaria fue aprobada o rechazada.
headers
AuthorizationBearer Token
Content-Typeapplication/json
Parameters
holder_nameNAME
CLABE123456789012345678
body
{"type":"CLABE","alias":"ALIAS ACCOUNT", "number":"123456789012345671","origin":1}
Example Request
curl --location --request POST 'https://sandbox-api.srpago.com/v1/bank-accounts' \ --header 'Content-Type: application/json' \ --data-raw '{"type":"CLABE","alias":"ALIAS ACCOUNT", "number":"123456789012345671","origin":1} '
Example Response
{ "success": false, "error": { "code": "BankNotFoundException", "message": "CLABE invalida, banco no encontrado", "description": "CLABE invalida, banco no encontrado" } }