Skip to content
For LLMsView as Markdown·

Neteller

Neteller iGaming e-wallet via Paysafe — OAuth2 merchant deposits (transferIn), withdrawals (transferOut), customer lookup, and transaction status.

DetailValue
CategoryiGaming
Base URLhttps://api.neteller.com
AuthenticationOAuth2 Client Credentials
Endpoints5
Connector keyneteller

Using Neteller in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Neteller from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
POST /v1/oauth2/tokenObtain an OAuth2 access token (client_credentials)
POST /v1/transferInCharge a Neteller customer (deposit)
POST /v1/transferOutPay out to a Neteller customer (withdrawal)
GET /v1/customers/{customerId}Look up a Neteller customer by ID or email
GET /v1/transactions/{transactionId}Get a Neteller transaction by ID

Each endpoint is documented in full below. Use the outline on the right to jump to one.

POST /v1/oauth2/token

Obtain an OAuth2 access token (client_credentials)

DetailValue
Operation IDgetNetellerAccessToken
MethodPOST
Path/v1/oauth2/token

Parameters

No parameters.

Request Body

FieldType
grant_typestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Neteller connection from the Connection dropdown.
  3. In the Operation dropdown, select getNetellerAccessToken.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Neteller API reference.

POST /v1/transferIn

Charge a Neteller customer (deposit)

DetailValue
Operation IDcreateNetellerTransferIn
MethodPOST
Path/v1/transferIn

Parameters

No parameters.

Request Body

FieldType
paymentMethodobject
transactionobject
verificationCodestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Neteller connection from the Connection dropdown.
  3. In the Operation dropdown, select createNetellerTransferIn.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Neteller API reference.

POST /v1/transferOut

Pay out to a Neteller customer (withdrawal)

DetailValue
Operation IDcreateNetellerTransferOut
MethodPOST
Path/v1/transferOut

Parameters

No parameters.

Request Body

FieldType
payeeProfileobject
transactionobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Neteller connection from the Connection dropdown.
  3. In the Operation dropdown, select createNetellerTransferOut.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Neteller API reference.

GET /v1/customers/{customerId}

Look up a Neteller customer by ID or email

DetailValue
Operation IDgetNetellerCustomer
MethodGET
Path/v1/customers/{customerId}

Parameters

NameLocationTypeRequired
customerIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Neteller connection from the Connection dropdown.
  3. In the Operation dropdown, select getNetellerCustomer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Neteller API reference.

GET /v1/transactions/{transactionId}

Get a Neteller transaction by ID

DetailValue
Operation IDgetNetellerTransaction
MethodGET
Path/v1/transactions/{transactionId}

Parameters

NameLocationTypeRequired
transactionIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Neteller connection from the Connection dropdown.
  3. In the Operation dropdown, select getNetellerTransaction.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Neteller API reference.