Skip to main content

🇦🇷 Argentina

Learn everything you need to know about making payouts in Argentina.

Payment Methods

  • DEBIN Instant
  • Mercado Pago Instant
  • Bank Transfer

Available Operations

  • Cross Border

Payee Types

  • B2B
  • B2C

Payment Methods​

Checkout our SLAs for each payment method:

Payment MethodSLAB2BB2C
DEBINDEBIN< 2 minutescheck_circle_outlinecheck_circle_outline
Mercado PagoMercado Pago< 2 minutescheck_circle_outlinecheck_circle_outline
Bank TransferBank TransferUp to 3 dayscheck_circle_outlinecheck_circle_outline

Instructions​

To create a payout using EBANX Direct API, follow the steps below.

  1. Define request parameters
    ​

    Provide the required parameters listed below to create a payout.

    FieldDescription
    integration_keyYour EBANX integration key.
    external_referenceThe unique payout ID provided by you.
    countryThe two-letter country code for the customer country. In this case, we'll show the method to ar (Argentina)
    amountThe amount in the specified currency (currency_code).
    currency_codeThree-letter code of the payout currency. In this case, we'll use ARS (Argentina)
    payeeA JSON object containing the details of the payee of your request.
    targetThe payment method that will be used. Can be left empty and the payout target will be assumed as Bank Transfer. More info below.

    Document Types Allowed

    These document types are used to identify payees or shareholders.

    Document typeDescription
    DNINational Identity Document, with 8 digits.
    CUILUnique Labor Identification Code, with 11 digits.
    CUITSingle Tax identification, with 11 digits.
  2. Send payout request to EBANX
    ​

    To create a new Payout, you will use the /ws/payout/create endpoint.

    Choose the payment method for your payout request:

    For Mercado Pago transactions, the target parameter must be set to "mercadopago". Additionally, the target_account must contain the email address linked to the payee's Mercado Pago account.

    curl -X POST 'https://sandbox.ebanx.com/ws/payout/create' \
    --header 'Content-Type: application/json' \
    --data '{
    "integration_key": "your_test_integration_key",
    "external_reference": "PAYOUT_EBANX_04",
    "country": "ar",
    "amount": 100,
    "currency_code": "ARS",
    "target": "mercadopago",
    "target_account": "chew@bac.ca",
    "payee": {
    "document": "85351346",
    "document_type": "DNI",
    "name": "Han Solo",
    "email": "chew@bac.ca",
    "address": {
    "zipcode": "B1675",
    "state": "AR-B",
    "city": "Buenos Aires",
    "street_address": "Fake Street",
    "street_complement": "123"
    }
    }
    }'

    B2B Payouts (Organizations)

    For organizations, the following fields are required in the shareholder object:

    • name
    • document
    • document_type
  3. Send commit request to EBANX
    ​

    Once the new payout record is created it'll be committed automatically after 6 hours. Or you can use the /ws/payout/commit endpoint to start the payment process.

    Here's an example of a commit operation using the payout we've just created:

    curl -X POST 'https://sandbox.ebanx.com/ws/payout/commit' \
    --header 'Content-Type: application/json' \
    --data '{
    "integration_key": "your_test_integration_key",
    "uid": "0e495f7a4409c032d54376084b10b9c771e9b39f0"
    }'

    Once the new payout is committed, a JSON object with type "success" will be returned.

    {
    "type": "success",
    "message": "Payout has already been committed"
    }
  4. Congratulations!
    ​

    You have successfully Created a Payout in Argentina.

Creating a Payout using the Dashboard​

You can also create a payout through our Dashboard in the Overview section of the Payout tab. Click on Create Payout, fill in the payee information, payout amount and click on Create. Additionally, you can create a Mass Payout by sending a spreadsheet to be processed in bulks.

CBU/CVU

The CBU (Clave Bancaria Uniforme) is a 22-digit code that identifies a bank account in Argentina. The CVU (Clave Virtual Uniforme) is also a 22-digit code used for virtual wallets and fintech accounts. Both can be used in the bank_details field.

Possible Errors​

Click here and check out our Payout Error Code page to learn more about the possible errors.

Still need help?

Help Image

We hope this article was helpful. If you still have questions, you can explore the following options: