Questions tagged [mollie]

Mollie is an online payment processor. The company is based in the Netherlands. They support iDEAL, credit card, PayPal, and Bitcoin, among other options. There is an HTTP API as well as PHP, Ruby, Node.js, and Python libraries.

75 questions
1
vote
0 answers

Not getting the paymentId in webhookUrl or redirectUrl in mollie payment integration with node

const customerPayment = await mollieClient.customerPayments.create({ customerId: "cst_vK6rVTW5gr", amount: { value: process.env.STANDARD_ACCOUNT_CHARGE, currency: "EUR", }, description: "Payment", redirectUrl: …
1
vote
0 answers

NuxtJS v3 + mollie.com payments integration error

I am trying to integrate mollie.com into my nuxtjs3 application. The goal is to fill button targets with checkout urls for specific products. Therefore I integrated @mollie/api-client intro to my nuxt v3.0.0 app. Within a subpage i load the script…
Max
  • 608
  • 1
  • 7
  • 23
1
vote
1 answer

Check if Mollie payment is paid

I have been stuck on this for weeks now so I'm dropping my question here, hopefully someone can help me. I have a website where people can sell their car. You buy an advertisement and you can upload your vehicle. I have integrated Mollie Payment API…
Bas
  • 98
  • 1
  • 1
  • 9
1
vote
0 answers

How should I handle the paginated API response form the Mollie mandates API?

I'm using the Mollie API for a SwiftUI app I'm creating. I'm communicating with the API using firebase cloud functions, and need to list the mandates of the current user. I'm using the Node.js Mollie client to communicate with the API. Te following…
Melle
  • 11
  • 2
1
vote
0 answers

Trying to create curl in excel vba

I'm trying to create a paylink with mollie in excel via api When I just use curl, below is working: curl -X POST https://api.mollie.com/v2/payments \ -H "Authorization: Bearer test_XXXXXXXXXXXXXX" \ -d "amount[currency]=EUR" \ -d…
Roy
  • 11
  • 2
1
vote
0 answers

Mollie applicationfee's

for a customer I need to charge an applicationFee for each order that has been processed on their site from the sub customers. The whole code is working with authentication and everything. But from the moment I'm adding: 'applicationFee' =>…
1
vote
1 answer

ErrorException Cannot redeclare class Concrete\Package\MolliePlugin\Controller in Concrete5 website

I'm new here, so I hope I'm doing this right. I inherited a portfolio of websites and one is a Concrete5 website. Unfortunately I don't have much experience with Concrete5 and I directly start with a site with an issue :(. When I go to…
Michel FW
  • 91
  • 8
1
vote
0 answers

OmniPay manually "create" a response class?

So I'm using https://github.com/thephpleague/omnipay-mollie and I've decided to use webhooks instead of the example they have on their readme. I've got all that working but when it comes time to process the webhook, I was hoping to have access to…
Borassign
  • 621
  • 2
  • 7
  • 16
1
vote
1 answer

WooCommerce custom mail different price than the customer

I am buying products with 20% discount and resell them for a normal price on my website. I want to make a extra email that has to be send to my own email address when a customer makes a order on my website. My question: If it’s possible to make…
1
vote
0 answers

Mollie split payment after user approval

I have this problem, that I want to solve in Laravel 5 (preferably using Mollie). PROBLEM My platform offers multiple account (free to create, no professionals) that offer services at various prices. I want a flow where the customer pays on…
nclsvh
  • 2,628
  • 5
  • 30
  • 52
1
vote
1 answer

External library in CodeIgniter, with global variabele

I want to add the Mollie library (https://github.com/mollie/mollie-api-php) in my CodeIgniter project. I have followed the steps on the github page, and since I'm not using composer I have downloaded the files and added 'require…
NVO
  • 2,566
  • 5
  • 27
  • 57
1
vote
1 answer

Unauthorized request Mollie Laravel

I'm trying to use Mollie in Laravel, but I'm encountering problems. This is my code (token from the Laravel/Mollie Github page): public function payApi($amount, $email) { $payment = Mollie::api()->payments()->create([ 'amount' =>…
O'Niel
  • 1,622
  • 1
  • 17
  • 35
1
vote
0 answers

Passing form values to another GTM tag after payment page

I'm trying to implement a conversion tracking on a site where you can donate a amount to goodwill. The situation: User inputs his/hers information into a WP form with the amount he/she wants to donate. So far its that's all in place i have a tag…
T Jasinski
  • 113
  • 2
  • 12
1
vote
2 answers

mollie payment integration in php

I am trying to integrate mollie gateway in my php application.When request for test transaction it will redirect to my notification url(return url) after successful payment. The transaction details can be only accessable If we pass the transaction…
Albert
  • 316
  • 3
  • 15
1
vote
1 answer

Omnipay - Mollie test transactions not showing on dashboard

I'm trying to implement Mollie API via omnipay php library. However i have few questions which i cant understand by myself. When i chose the payment status to be returned as Cancelled and click on Further to your webshop Mollie redirects me to the…
mstojanov
  • 175
  • 4
  • 17