Request Individual

Only Available for Argentina

POST {{api_environment_url}}/api/virtual-account

Request Body

Name
Type
Description

externalid*

String

Mandatory. An ID that is meaningful to you and your system. It must be unique and alphanumeric, no characters allowed.

accountnumber*

String

Your Localpayment account number

country*

String

ARG

beneficiary*

OBJECT

Party Object

beneficiary.type*

ossible values: "COMPANY" or "INDIVIDUAL"

beneficiary.name*

String

Individual / company name

beneficiary.lastname

String

Only for INDIVIDUAL type / Ignored for COMPANY.

beneficiary.document*

OBJECT

document.type*

String

Document type (related to the beneficiary's residence. Must be Argentinean resident "CUIT;CUIL;CDI")

document.id*

String

Identity document id. Usually numbers or coIdentity document for INDIVIDUAL or Tax Id for COMPANY Generally numbers or combination of numbers and letters.

address

Object

Party Object

address.street

String

Street address

address.number

String

number address

address.state

String

State address

address.country

String

Country address

address.city

String

City of de address

address.zipcode

String

Address zip code

{
    "externalId": "{{externalId}}",
    "internalId": "internalId",
    "accountNumber": "YourAccountNumber",
    "country": "ARG",
    "currency": "ARS",
    "cvu": "0000101100000000000111",
    "beneficiary": {
        "type": "INDIVIDUAL",
        "name": "Name",
        "document": {
            "type": "CUIT",
            "id": "20411111111"
        },
        "fullName": "Pruebas Test",
        "lastName": "Test"
    },
    "status": {
        "code": "200",
        "description": "COMPLETED",
        "detail": "Virtual account has been created"
    },
    "errors": []
    
}

Examples: Virtual Account request

{
   "externalId": "{{externalId}}",
   "accountNumber": "{{YourAccountNumber}}",
   "country": "ARG", 
   "beneficiary": {
       "document": {
           "id": "20115872045",
           "type": "CUIT"
       },
       "name": "BeneficiaryName",
       "lastname": "BeneficiaryLastname",
       "type": "INDIVIDUAL"
      },
      "address": {
        "city": "city",
        "state": "state",
        "zipcode": "zipcode",
        "street": "street",
        "number": "number",
        "country": "country"
    }
 }

Last updated