organization · inferred from evidence
Mollie
The organization maintaining the Mollie API and its client libraries.
- Mollie PHP 2.32.1 breaks all payments with 415 Unsupported Input Received
Version 2.32.1 shipped a regression that broke the Content-Type handling, so every API call failed with a 415. Fix: upgrade to 2.32.2, which reverts the bad change. Do not stay on 2.32.1. Several users confirmed payments worked again right
- Mollie API calls time out with cURL error 28 in the PHP client
The SDK's bundled Guzzle client uses a short default timeout, so slow DNS resolution makes payment creation time out with cURL error 28. Fix: construct your own Guzzle client with a longer timeout and pass it to the `MollieApiClient` constr
- Mollie PHP client: revoking a mandate fails with Non-existent query parameter testmode
The mandate `revoke` method put `testmode` in the query string, but the DELETE endpoint rejected it there. Fix: call `$customer->revokeMandate($mandate->id)` instead of the mandate resource's `revoke` method. This was the maintainer's sugge
- Mollie v1 PHP client times out listing invoices
The v1 client's 10 second timeout was being hit because the list-invoices endpoint itself was slow. Mollie fixed the slow endpoint server-side, so the first thing to do is retry: the reporter saw all invoices load in about 3 seconds after t