v1
latestOpenAPI 3.1.02026-07-228956435.8 KBAccount verifications
Create an account verification
Verifies the ownership and details of a counterparty account by issuing a verification transfer from one of your accounts. The verification uses the live or test mode of the API key. Requires a JSON Web Signature (JWS).
post/account_verifications
Headers
Fintoc-JWS-Signaturestring required
JSON Web Signature (JWS) of the request body. The signature authorizes the verification transfer. See the account verification guide for generating the JWS: https://docs.fintoc.com/docs/account-verification.
Request body
Example request
{
"account_number": "132969000000000190"
}Response
The created account verification.
Example response
{
"id": "accv_2daFu0zqqDtZGJaSi2TGI2Mm1nN",
"counterparty": {
"account_number": "132969000000000190",
"account_type": "clabe",
"holder_id": "000000000",
"holder_name": "Test Customer 1",
"institution": {
"id": "40012",
"name": "BBVA Mexico",
"country": "mx"
}
},
"mode": "test",
"status": "pending",
"transfer_id": "tr_2daFu0zqqDtZGJaSi2TGI2Mm1nN"
}