---
title: "Neteller"
slug: "neteller"
updated: 2026-02-19T08:49:57Z
published: 2026-02-19T08:49:57Z
canonical: "docs.apcopay.com/neteller"
---

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

# Neteller

Neteller is a leading digital wallet service that allows users to send, receive, and store money securely online. It offers fast payments, international money transfers, and supports deposits and withdrawals across a wide range of merchants and platforms.

## Supported Transaction Types

- [ ] Authorisation
- [ ] Capture
- [x] Purchase
- [ ] Refund
- [ ] Void
- [x] Withdrawal

## Integrations Supported

**Deposit**

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

**Withdrawal**

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

### 

## Currencies & Countries Supported

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

## Additional tags to process Neteller

You must include the following tag. This tag informs us to proceed with the redirection to Neosurf to finalize the payment process.

| Description | Hosted Payment Page | Direct Connect (Withdrawals only) |
| --- | --- | --- |
| **Transaction type** | "TransactionType": "PURC", | "TransactionType": "ORIGINALCREDIT", |
| **Force Transaction Routing** | “Routing”:{ “ForcePayment”:”NETELLER” } |
| **Client Data** | }, "Client": { "Email": "Apco.Test@Test.com", "ClientAccount": "testing", "FirstName": "Apco", "LastName": "Test", "Country": "MLT", "Street": "TestStreet", "City": "TestCity", "ZIPCode": "ZIPCode", "State": "N/A", "IPAddress": "214.21.134.79" } | "Client": { "Email": "Apco.Test@Test.com", "ClientAccount": "ApcoTest", "FirstName": "Apco", "LastName": "Test", "Country": "DE", "City": "Marsa", "ZIPCode": "ZIPCode", "DateOfBirth": "1980-12-30", "MobileNo": "+35612345678", "IPAddress": "214.21.134.79" } |
| **Test Indicator** (required in Sandbox Environment only) | "isTest”: true |

**Sample Request**

```json
{
  "TransactionType": "PURC",
  "Currency": "EUR",
  "Amount": "1.00",
  "OrderReference": "MerchantOrder1",
  "RedirectionURL": "https://www.yourURLhere.com/Redirect",
  "CallBackURL": "https://www.yourURLhere.com/Listener",
  "Language": "en",
  "Routing": {
    "ForcePayment": "NETELLER"
  },
  "Client": {
    "Email": "Apco.Test@Test.com",
    "ClientAccount": "testing",
    "FirstName": "Apco",
    "LastName": "Test",
    "Country": "MLT",
    "Street": "TestStreet",
    "City": "TestCity",
    "ZIPCode": "ZIPCode",
    "State": "N/A",
    "IPAddress": "214.21.134.79"
  },
  "IsTest": "True",
  "Configuration": {
    "profile": "showandedit"
  }
}
```

**Sample request for a payout**

```json
 {
  "TransactionType": "ORIGINALCREDIT",
  "Amount": "1.00",
  "Currency": "EUR",
  "Country": "MLT",
  "OrderReference": "MerchantOrder1",
 "RedirectionURL": "https://www.yourURLhere.com/Redirect",
  "CallBackURL": "https://www.yourURLhere.com/Listener",
  "Language": "en",
  "Client": {
    "Email": "Apco.Test@Test.com",
    "ClientAccount": "ApcoTest",
    "FirstName": "Apco",
    "LastName": "Test",
    "Country": "DE",
    "City": "Marsa",
    "ZIPCode": "ZIPCode",
    "DateOfBirth": "1980-12-30",
    "MobileNo": "+35612345678",
    "IPAddress": "214.21.134.79"
  },
  "Routing": {
    "ForcePayment": "NETELLER"
  },
  "IsTest": "True"
}
```
