AIRCASH

Prev Next

Supported Transaction Types

  • Authorisation

  • Capture

  • Purchase

  • Refund

  • Withdrawal

Integrations Supported

Deposit

Withdrawal

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.

{
  "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.

{
  "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"
}