Skip to content
For LLMsView as Markdown·

Nuvei

iGaming payment processing with deposits, withdrawals, and KYC verification.

DetailValue
CategoryiGaming
Base URLhttps://ppp-test.nuvei.com/ppp/api/v1
AuthenticationHMAC-SHA256
Endpoints6
Connector keynuvei

Using Nuvei in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Nuvei 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 /openOrderOpen an order (session)
POST /paymentProcess a payment
POST /payoutProcess a withdrawal/payout
POST /getPaymentStatusGet payment status
POST /voidTransactionVoid a transaction
POST /refundTransactionRefund a transaction

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

POST /openOrder

Open an order (session)

DetailValue
Operation IDigaming.openOrder
MethodPOST
Path/openOrder

Parameters

No parameters.

Request Body

FieldType
merchantIdstring
merchantSiteIdstring
clientRequestIdstring
currencystring
amountstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.openOrder.
  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 Nuvei API reference.

POST /payment

Process a payment

DetailValue
Operation IDigaming.createPayment
MethodPOST
Path/payment

Parameters

No parameters.

Request Body

FieldType
sessionTokenstring
merchantIdstring
currencystring
amountstring
paymentOptionobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.createPayment.
  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 Nuvei API reference.

POST /payout

Process a withdrawal/payout

DetailValue
Operation IDigaming.createPayout
MethodPOST
Path/payout

Parameters

No parameters.

Request Body

FieldType
merchantIdstring
userTokenIdstring
amountstring
currencystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.createPayout.
  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 Nuvei API reference.

POST /getPaymentStatus

Get payment status

DetailValue
Operation IDigaming.getPaymentStatus
MethodPOST
Path/getPaymentStatus

Parameters

No parameters.

Request Body

FieldType
sessionTokenstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.getPaymentStatus.
  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 Nuvei API reference.

POST /voidTransaction

Void a transaction

DetailValue
Operation IDigaming.voidTransaction
MethodPOST
Path/voidTransaction

Parameters

No parameters.

Request Body

FieldType
merchantIdstring
relatedTransactionIdstring
amountstring
currencystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.voidTransaction.
  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 Nuvei API reference.

POST /refundTransaction

Refund a transaction

DetailValue
Operation IDigaming.refundTransaction
MethodPOST
Path/refundTransaction

Parameters

No parameters.

Request Body

FieldType
merchantIdstring
relatedTransactionIdstring
amountstring
currencystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Nuvei connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.refundTransaction.
  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 Nuvei API reference.