---
title: "CallPay Card Processing"
slug: "callpay-card-processing"
updated: 2026-02-27T08:22:44Z
published: 2026-02-27T08:22:44Z
canonical: "docs.apcopay.com/callpay-card-processing"
---

> ## 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.

# CallPay Card Processing

## Supported Transaction Types

- [ ] Authorisation `AUTH`
- [ ] Capture `CAPT`
- [x] Purchase `PURC`
- [ ] Refund `PARTIALREFUND`
- [ ] Void `GENERALVOID`
- [ ] Payouts `ORIGINALCREDIT`
- [ ] Recurring `PURC`

## Integrations Supported

**Deposit - Authorisation / Purchase**

- [x] Hosted Payment Page
- [ ] Direct Connect ( server-to-server)

## Supported Wallet

- [ ] GooglePay
- [ ] Applepay

## Currencies & Countries Supported

| Title | Description |
| --- | --- |
| **Currencies Supported** | Various |

## Additional tags to process Deposits

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

If you are using our **Hosted Payment Page**

| Description | Hosted Payment Page |
| --- | --- |
| **Transaction Type** | "TransactionType": "PURC" |
| **Force Transaction Routing** | "Routing": { "ForcePayment": "CALLPAY" } |
| **Client Details** | "Client": { "Email": "testing@apcotest.com", "ClientAccount": "testing", "FirstName": "Apco", "LastName": "Test", "Country": "MLT", "City": "Marsa", "IPAddress": "1.1.1.1" } |
| **Test Indicator** | "isTest": true |

Sample requests using our Hosted Payment Page can be viewed here.

```json
{
  "TransactionType": "PURC",
  "Amount": "10",
  "Currency": "EUR",
  "Language": "en",
  "OrderReference": "ORder1256",
  "RedirectionURL": "https://www.yourURLhere.com/Redirect/",
  "CallBackURL": "https://www.yourURLhere.com/Listener",
  "FailRedirectionURL": "https://www.yourURLhere.com/Redirect/",
  "IsTest": "True",
  "Routing": {
    "ForcePayment": "CALLPAY"
  },
  "Client": {
    "Email": "testing@apcotest.com",
    "ClientAccount": "testing",
    "FirstName": "Apco",
    "LastName": "Test",
    "Country": "MLT",
    "City": "Marsa",
    "IPAddress": "1.1.1.1"
  },
  "IsTest": "True"
}
```
