Skip to content
API DocsDocs

ARS Payout Payload

Request and response payloads for Argentine bank-transfer payouts.

2 min readUpdated Sep 9, 2026

Payment Method Identifier: ARS | Payment Type: BANK_TRANSFER

ARS payouts send funds to an Argentine CVU or CBU through POST /api/v1/payouts/apm. Only ARS payouts are supported.

#Request Payload

#Request Fields

FieldTypeRequiredDescription
paymentMethodStringYesMust be ARS
paymentTypeStringYesMust be BANK_TRANSFER
accountNumberStringYesRecipient CVU or CBU; exactly 22 digits
accountHolderNameStringNoRecipient account holder name
{
  "paymentMethod": "ARS",
  "paymentType": "BANK_TRANSFER",
  "accountNumber": "0000000000000000000000",
  "accountHolderName": "Demo Customer"
}

#Direct Response

The direct response has actionType: NONE; no customer action is required.

{
  "paymentMethod": "ARS",
  "paymentType": "BANK_TRANSFER",
  "actionType": "NONE",
  "providerTransactionId": "ars-payout-123456"
}

#Response Fields

FieldTypeDescription
paymentMethodEnumAlways ARS
paymentTypeEnumAlways BANK_TRANSFER
actionTypeEnumNONE for a direct payout
providerTransactionIdStringProvider transaction identifier, when available

The initial transaction status may still be asynchronous, so use your callback endpoint or retrieve the payout status.

#Internal Redirect Response

If APM Data Collection is configured, missing recipient fields can be collected through the hosted checkout. You can also request the internal APM redirect flow explicitly. In either case, the initial response has actionType: REDIRECTION; redirect the customer to redirectUrl to continue the same payout.

{
  "paymentMethod": "ARS",
  "paymentType": "BANK_TRANSFER",
  "actionType": "REDIRECTION",
  "redirectUrl": "https://checkout.example.com/?token=...",
  "providerTransactionId": "ars-payout-123456"
}

#See Also

Was this helpful?