Mollie Payments

Mollie Payments 1.0.2

No permission to buy ($40.00)
Refunds:

Refunds/chargebacks are fully supported. Note, partial refunds will not remove an upgrade. Full refunds and any chargeback will.

CLI:

If you're testing you'll need to move "pending" transactions manually as it's a Mollie quirk, run the following in the CLI:

Bash:
php cmd.php wutime-mollie:replay-payment --payment-id=tr_UpuxtsGHTbHsimBAJB5EJ
You'll see:

Bash:
Replay finished. result=
Log: Mollie: awaiting completion (pending)

You can also review subscriptions in the CLI. Mollie doesn't provide subscription information in the GUI for customers, so do this:

Bash:
php cmd.php wutime-mollie:check --request-key=Df0DT2XWETz5MBDy3VRkq_HbKppsVWjN

or

Bash:
php cmd.php wutime-mollie:check --customer=cst_BZp4fNVtux

You'll be returned with all the data for the customer, payment and subscription if it exists, and the status:

Bash:
Using active Mollie profile id=5 (Pay using Mollie)

Mollie Customer
===============

 ------- ------------------
  id      cst_BZp4fNVtux
  name    wu
  email   wutime@gmail.com
  mode    test
 ------- ------------------

Mandates
--------

 ---------------- -------- --------- ---------------------------
  id               method   status    created
 ---------------- -------- --------- ---------------------------
  mdt_sHfr3b7soX   paypal   pending   2025-09-11T14:54:36+00:00
 ---------------- -------- --------- ---------------------------

Subscriptions
-------------

 ---------------- -------- ---------- ---------- ------------ ------------
  id               status   interval   amount     start        next
 ---------------- -------- ---------- ---------- ------------ ------------
  sub_A7tybKpVqL   active   1 day      5.00 USD   2025-09-12   2025-09-12
 ---------------- -------- ---------- ---------- ------------ ------------

Recent customer payments
------------------------

 -------------------------- ------- --------- ---------- -------------- --------------------------- ------
  id                         seq     status    amount     subscription   created                     paid
 -------------------------- ------- --------- ---------- -------------- --------------------------- ------
  tr_UpuxtsGHTbHsimBAJB5EJ   first   pending   5.00 USD                  2025-09-11T14:54:36+00:00
 -------------------------- ------- --------- ---------- -------------- --------------------------- ------


 [OK] Recurring OK: active subscription present.

Note, subscription sub_xxx doesn't show up on "first" payment with Mollie, but will be set and appear on the follow-up payments.
Back
Top Bottom