---
title: "SALTEDGE"
slug: "saltedge"
updated: 2026-06-09T12:46:07Z
published: 2026-06-09T12:46:07Z
canonical: "docs.apcopay.com/saltedge"
---

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

# SALTEDGE

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

You must include the following properties in your request.

| Description | Hosted Payment Page |
| --- | --- |
| **Force Transaction Routing** | "Routing":{ "ForcePayment": "SALTEDGE” } |
| **Client Details** | "Client": { "Email": "xefev67513@4nly.com", "FirstName": "John", "LastName": "Doe", "MobileNo": "79290218", "City": "Marsa", "Country": "MLT", "Street": "Test Street", "IPAddress": "102.38.239.2", "DateOfBirth": "1999-01-01" }, |
| **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",
  "Currency": "EUR",
  "Amount": "2.50",
  "OrderReference": "Test Deposit SALTEDGE",
  "RedirectionURL": "https://url/Redirect",
  "CallBackURL": "https://url/Listener",
  "FailRedirectionURL": "https://url/Redirect",
  "Language": "en",
  "Client": {
    "Email": "xefev67513@4nly.com",
    "FirstName": "John",
    "LastName": "Doe",
    "MobileNo": "79290218",
    "City": "Marsa",
    "Country": "MLT",
    "Street": "Test Street",
    "IPAddress": "102.38.239.2",
    "DateOfBirth": "1999-01-01"
  },
  "PaymentMethodData" : {
    "PhoneCountryCode": "+356"
  },
  "Routing": {
    "ForcePayment": "SALTEDGE"
  },
  "IsTest": "True"
}
```

## Additional properties to process Withdrawals via SALTEDGE

You must include the following values.

| Description |  |
| --- | --- |
| **Transaction Type** | "TransactionType": "ORIGINALCREDIT" |
| **Force Transaction Routing** | *"Routing": {* *"ForcePayment": "SALTEDGE"* *},* |
| **PaymentMethodData** | "PaymentMethodData" : { "Iban": "GB33BUKB20201555555555" }, |
| **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",
  "Currency": "EUR",
  "Amount": "3.00",
  "OrderReference": "test",
  "RedirectionURL": "https://url/Redirect",
  "CallBackURL": "https://url/Listener",
  "FailRedirectionURL": "https://url/Redirect",
  "Language": "en",
  "Client": {
    "Email": "jevotak380@aspensif.com",
    "FirstName": "John",
    "LastName": "Doe",
    "MobileNo": "79290218",
    "City": "Marsa",
    "Country": "MLT",
    "Street": "Test Street",
    "IPAddress": "102.38.239.2",
    "DateOfBirth": "1999-01-01"
  },
  "Routing": {
    "ForcePayment": "SALTEDGE"
  },
  "PaymentMethodData" : {
    "Iban": "GB33BUKB20201555555555"
  }
}
```
