Mollie
Mollie is a payment service provider that enables businesses to accept and manage payments online. It is commonly used in ecommerce to generate payment links, process transactions, and manage customer payments.
Key features include:
- Payment link creation
- Multi-currency support
- Payment status tracking
- API-based payment processing
This scenario creates a payment link in Mollie when an order is finalised in ShopWired.
This scenario allows:
- Receiving order data from ShopWired via webhook
- Creating a payment link using order product data
- Setting payment amount and description dynamically
- Generating payment links in GBP
Scenario blueprint
Scenario blueprint
Open the scenario blueprint in Make
This scenario uses a webhook trigger and a Mollie action module.
Modules used in this scenario:
- ShopWired Order Finalized (webhook)
- Mollie – Create Payment Link
This scenario uses:
- A webhook to receive data from ShopWired
- A Mollie module to create a payment link
Scenario setup steps
Scenario setup steps
- Select the scenario blueprint provided with this guide
- Open it in Make
- Create a new scenario from the blueprint
- Replace any placeholder values if required
- Connect required accounts
- Turn the scenario on
- Trigger the relevant event in ShopWired
ShopWired webhook data
ShopWired webhook data
Event: order.finalized
{
"event": {
"topic": "order.finalized",
"data": {
"object": {
"products": [
{
"title": "Product name",
"price": "10.00"
}
]
}
}
}
}
Required user inputs
Required user inputs
| Field | Description |
|---|---|
| Mollie connection | Authorise your Mollie account |
| Profile ID | Select your Mollie profile ID |
| Webhook URL | Generated by Make webhook module and added to ShopWired |
Recommendations
Recommendations
- Ensure the webhook is correctly configured in ShopWired before testing
- Use a test order to validate the payment link creation
- Confirm that product title and price fields are populated in ShopWired
- This scenario creates one payment link per product item received
- This scenario does not update or modify ShopWired orders
- Custom modifications to data mapping are not supported by ShopWired