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
| Field | Type | Required | Description |
|---|---|---|---|
paymentMethod | String | Yes | Must be ARS |
paymentType | String | Yes | Must be BANK_TRANSFER |
accountNumber | String | Yes | Recipient CVU or CBU; exactly 22 digits |
accountHolderName | String | No | Recipient 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
| Field | Type | Description |
|---|---|---|
paymentMethod | Enum | Always ARS |
paymentType | Enum | Always BANK_TRANSFER |
actionType | Enum | NONE for a direct payout |
providerTransactionId | String | Provider 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
- APM Payout API — Full request and response schema
- Payout Flow — End-to-end payout handling
- ARS Payment Payload — ARS payment references
Was this helpful?