Check virtual account

GET {{api_environment_url}}/api/virtual-account/:externalid

Query Parameters

NameTypeDescription

externalId*

String

{
  "externalId": "1661435666",
  "internalId": "d2a87642-f958-445a-ba02-4f6eb15f0f7ec",
  "accountNumber": "032.032.00000027",
  "country": "ARG",
  "currency": "ARS",
  "beneficiary": {
    "type": "INDIVIDUAL",
    "name": "FirstName",
    "lastname": "LastName",
    "document": {
      "type": "CUIT",
      "id": "2011111111"
    },
    "bank": {
      "account": {
        "number": "0000472900016625668611"
      }
    }
  },
  "status": {
    "code": "200",
    "description": "COMPLETED",
    "detail": "Virtual account has been created"
  },
  "errors": []
}

Example: Virtual Account response

curl --location \
--request GET '{{api_base_url}}/api/virtual-account/1699455163/' \
--header 'Authorization: Bearer {{token}}'

You will get the Bank Account Number when the transaction is in COMPLETED status.

Last updated