Skip to content
For LLMsView as Markdown·

Mollie

European payment processing for online payments, subscriptions, and refunds.

DetailValue
CategoryE-commerce
Base URLhttps://api.mollie.com/v2
AuthenticationBearer Token
Endpoints5
Connector keymollie

Using Mollie in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Mollie 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 /paymentsCreate a payment
GET /payments/{id}Get a payment
GET /paymentsList payments
POST /payments/{id}/refundsCreate a refund
GET /methodsList available payment methods

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

POST /payments

Create a payment

DetailValue
Operation IDecommerce.createPayment
MethodPOST
Path/payments

Parameters

No parameters.

Request Body

FieldType
amountobject
descriptionstring
redirectUrlstring

Using this endpoint in a workflow

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

GET /payments/{id}

Get a payment

DetailValue
Operation IDecommerce.getPayment
MethodGET
Path/payments/{id}

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

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

GET /payments

List payments

DetailValue
Operation IDecommerce.listPayments
MethodGET
Path/payments

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

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

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 Mollie API reference.

POST /payments/{id}/refunds

Create a refund

DetailValue
Operation IDecommerce.createRefund
MethodPOST
Path/payments/{id}/refunds

Parameters

NameLocationTypeRequired
idpathstringYes

Request Body

FieldType
amountobject

Using this endpoint in a workflow

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

GET /methods

List available payment methods

DetailValue
Operation IDecommerce.listPaymentMethods
MethodGET
Path/methods

Parameters

NameLocationTypeRequired
amount[value]querystringNo
amount[currency]querystringNo

Using this endpoint in a workflow

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

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 Mollie API reference.