--- title: "AIRCASH" slug: "aircash" updated: 2026-02-19T09:33:48Z published: 2026-02-19T09:33:48Z canonical: "docs.apcopay.com/aircash" --- > ## 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. # AIRCASH ## Supported Transaction Types - [ ] Authorisation - [ ] Capture - [x] Purchase - [ ] Refund - [x] Withdrawal ## Integrations Supported **Deposit** - [x] [Hosted Payment Page](https://apcopay.redoc.ly/#tag/Hosted-Payment-Page) - [ ] Direct Connect ( server-to-server) **Withdrawal** - [ ] Hosted Payment Page - [x] [Direct Connect ( server-to-server)](https://apcopay.redoc.ly/#operation/PaymentOperationAUTHPURC) ## Additional properties to process Deposit via AIRCASH You must include the following properties in your request. | Description | Hosted Payment Page | | --- | --- | | **Force Transaction Routing** | "Routing":{ "ForcePayment": "AIRCASH” } | | **Client Details** | "Client": { "email": "apco.test@gmail.com", "clientAccount": "apcoaccount", "firstName": "Testing", "lastName": "apco", "country": "MLT", "mobileNo": "+38349977375", "street": "12A, 10435 Marsa", "city": "Marsa", "ZIPCode": "10176", "dateOfBirth": "1993-08-26", "IPAddress": "127.0.0.1" } | | **Test Indicator** (required in Sandbox Environment only) | "isTest": true | Below is a sample request. You can find a more detailed explanation on our APIs in our [API reference documentation](https://apcopay.redoc.ly/). ```json {  "TransactionType": "PURC",  "Amount": "1.00",  "Currency": "EUR",  "Country": "MLT",  "OrderReference": "order123",  "UniqueReference": "e0a65b67-6723-4ed4-bcdc-168f242f8df9",  "RedirectionURL": "https:/www.yourURLhere.com/Redirect/",  "FailRedirectionURL": "https://yourURLhere.com/FailRedirect/",  "CallBackURL": "https://www.yourURLhere.com/Listener",  "Routing": {    "ForcePayment": "AIRCASH"  },  "IsTest": True,  "Client": {    "email": "apco.test@gmail.com",    "clientAccount": "apcoaccount",    "firstName": "Testing",    "lastName": "apco",    "country": "MLT",    "mobileNo": "+38349977375",    "street": "12A, 10435 Marsa",    "city": "Marsa",    "ZIPCode": "10176",    "dateOfBirth": "1993-08-26",    "IPAddress": "127.0.0.1"  } } ``` ## Additional properties to process Withdrawals via AIRCASH You must include the following values. | Description | | | --- | --- | | **Transaction Type** | "TransactionType": "ORIGINALCREDIT" | | **Force Transaction Routing** | *"Routing": {* *"ForcePayment": "AIRCASH"* *},* | | **Transaction or Payment Reference** | "PspID": "34234212” | | **Test Indicator** | "isTest”: true | Below is a sample request. You can find a more detailed explanation on our APIs in our [API reference documentation](https://apcopay.redoc.ly/). ```json {  "TransactionType": "ORIGINALCREDIT",  "Amount": "1.00",  "Currency": "EUR",  "OrderReference": "order1234",  "Routing": {    "ForcePayment": "AIRCASH"  },  "Client": {    "email": "apco.test@gmail.com",    "clientAccount": "apcoaccount",    "firstName": "Testing",    "lastName": "apco",    "country": "MLT",    "mobileNo": "+38349977375",    "street": "12A, 10435 Marsa",    "city": "Marsa",    "ZIPCode": "10176",    "dateOfBirth": "1993-08-26",    "IPAddress": "127.0.0.1"  },  "RedirectionURL": "https:/www.yourURLhere.com/Redirect/",  "FailRedirectionURL": "https://yourURLhere.com/FailRedirect/",  "CallBackURL": "https://www.yourURLhere.com/Listener",  "IsTest": "True" } ```