Request Individual

Only Available for Argentina

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

Request Body

NameTypeDescription

externalid*

String

An ID that is meaningful to you and your system. Must be unique.

accountnumber*

String

Your Localpayment account number

beneficiary*

OBJECT

Party Object

document.id*

String

Identity document id. Usually numbers or combination of numbers and letters (related to the beneficiary's residence).

document.type*

String

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

name*

String

Individual / company name

lastname

String

Only for INDIVIDUAL type / Ignored for COMPANY.

type*

String

Possible values: "COMPANY" or "INDIVIDUAL"

country*

String

beneficiary.document*

OBJECT

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",
    "beneficiary": {
        "type": "INDIVIDUAL",
        "name": "{{name}}",
        "lastname": "{{lastname}}",
        "document": {
            "type": "CUIT",
            "id": "2011111111"
       }
    },
    "status": {
        "code": "100",
        "description": "INPROGRESS",
        "detail": "Virtual account in progress"
    },
    "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