---
title: "MONETIXBANKS"
slug: "monetixbanks"
updated: 2026-06-09T06:04:12Z
published: 2026-06-09T06:04:12Z
canonical: "docs.apcopay.com/monetixbanks"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apcopay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MONETIXBANKS

**MONETIXBANKS** is a payment system that allows customers to make purchases by using the provider payment form and the payment form of the merchant, as well as receive payouts.

### Supported Transaction Types

- [ ] Authorisation
- [x] Purchase
- [ ] Capture
- [ ] Void
- [ ] Refunds
- [x] Withdrawals

### Integrations Supported

**Deposit**

- [x] Hosted Payment Page
- [ ] Direct Connect

**Withdrawal**

- [ ] Hosted Payment Page
- [x] Direct Connect

## Additional attributes to process **Argentina** via Monetix

You must include the following JSON Attributes in the payload. These attributes inform us to proceed with the redirection to finalise the payment process.

| Description | Hosted Payment Page | **Direct Connect (Withdrawals only)** |
| --- | --- | --- |
| **Transaction type** | "TransactionType": "PURC", | "TransactionType": "ORIGINALCREDIT", |
| **Force Transaction Routing** | “Routing”:{ "ForcePayment": "MONETIXBANKS” } | “Routing”:{ "ForcePayment": "MONETIXBANKS” } |
| **Client Details** | "Client": { "FirstName": "Joe", "LastName": "Borg", "City": "TestCity", "Email": "[TestEmail@Email.com](mailto:TestEmail@Email.com)", "ClientAccount": "testing", "IPAddress":"1.1.1.1" }, | "Client": { "Email": "[TestEmail@Email.com](mailto:TestEmail@Email.com)", "FirstName": "Joe", "LastName": "Bloggs", "City": "MagicCity", "IPAddress": "127.0.0.1", "ClientAccount": "ApcoTest", "MobileNo": "5492231234567" }, |
| **Payment Method Data** | "PaymentMethodData": { "DocumentNumber": "12345678901", "DocumentType": "CUIT" }, | "PaymentDestination": { "PaymentMethod": "AlternativePaymentMethods", "PaymentMethodData": { "DocumentNumber": "12345678901", "DocumentType": "CUIT", "BeneficiaryAccountNumber": "4481234212345678901233", "PayoutAccountType":"CACC" } }, |
| **Test Indicator** (required in Sandbox Environment only) | "isTest”: true | "isTest”: true |

**Sample Request for Deposit**

```json
{
  "TransactionType": "PURC",
  "Amount": "10000.00",
  "Currency": "ARS",
  "OrderReference": "Monetix Arg test",
  "RedirectionURL": "https://url/Redirect/",
  "CallBackURL": "https://url/Listener",
  "Routing": {
    "ForcePayment": "MONETIXBANKS"
  },
  "IsTest": "True",
  "Client": {
    "FirstName": "Joe",
    "LastName": "Borg",
    "City": "TestCity",
    "Street": "fakestreet 123",
    "Email": "TestEmail@Email.com",
    "ClientAccount": "testing",
    "IPAddress": "1.1.1.1"
  },
  "PaymentMethodData": {
    "DocumentNumber": "12345678901",
    "DocumentType": "CUIT"
  },
  "Configuration": {
    "Profile": "showandedit"
  }
}
```

**Sample request for a Payout**

```json
{
  "TransactionType": "ORIGINALCREDIT",
  "Amount": "100.00",
  "Currency": "ARS",
  "OrderReference": "Monetix payout test",
  "IsTest": true,
  "RedirectionURL": "https://url/Redirect",
  "CallBackURL": "https://url/Listener",
  "Client": {
    "Email": "TestEmail@Email.com",
    "FirstName": "Joe",
    "LastName": "Bloggs",
    "City": "MagicCity",
    "IPAddress": "127.0.0.1",
    "ClientAccount": "ApcoTest",
    "MobileNo": "5492231234567"
  },
  "PaymentDestination": {
    "PaymentMethod": "AlternativePaymentMethods",
    "PaymentMethodData": {
      "DocumentNumber": "12345678901",
      "DocumentType": "CUIT",
      "BeneficiaryAccountNumber": "4481234212345678901233",
      "PayoutAccountType":"CACC"
    }
  },
  "Routing": {
    "ForcePayment": "MONETIXBANKS"
  }
}
```
