This package has been deprecated

Author message:

This package has been moved. Please install @mollie/api-client instead

mollie-api-node

1.4.0 • Public • Published

Mollie

Mollie API client for Node

Accepting iDEAL, Bancontact/Mister Cash, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, Bitcoin, PayPal, Belfius Direct Net, KBC/CBC, paysafecard, ING Home'Pay, Giftcards, Giropay and EPS online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.

Requirements

To use the Mollie API client, the following things are required:

  • Get yourself a free Mollie account. No sign up costs.
  • Create a new Website profile to generate API keys (live and test mode) and setup your webhook.
  • Now you're ready to use the Mollie API client in test mode.
  • In order to accept payments in live mode, payment methods must be activated in your account. Follow a few of steps, and let us handle the rest.

Installation

By far the easiest way to install the Mollie API client is to install it with npm.

$ npm install mollie-api-node --save

{
    "dependencies": {
        "mollie-api-node": "^1.4.0"
    }
}

You may also git checkout or download all the files, and include the Mollie API client manually.

How to receive payments

To successfully receive a payment, these steps should be implemented:

  1. Use the Mollie API client to create a payment with the requested amount, description and optionally, a payment method. It is important to specify a unique redirect URL where the customer is supposed to return to after the payment is completed.

  2. Immediately after the payment is completed, our platform will send an asynchronous request to the configured webhook to allow the payment details to be retrieved, so you know when exactly to start processing the customer's order.

  3. The customer returns, and should be satisfied to see that the order was paid and is now being processed.

Getting started

Requiring the library.

Mollie = require("mollie-api-node");

Initializing the Mollie API client, and setting your API key.

mollie = new Mollie.API.Client;
mollie.setApiKey("test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM");

Creating a new payment.

mollie.payments.create({
    amount:      10.00,
    description: "My first API payment",
    redirectUrl: "https://webshop.example.org/order/12345/",
    webhookUrl:  "https://webshop.example.org/mollie-webhook/"
}, function (payment) {
    response.writeHead(302, { Location: payment.getPaymentUrl() })
});

Retrieving a payment.

mollie.payments.get(
    payment.id
, function (payment) {
    if (payment.isPaid()) {
        console.log("Payment received.");
    }
});

Want to help us make our API client even better?

Want to help us make our API client even better? We take pull requests, sure. But how would you like to contribute to a technology oriented organization? Mollie is hiring developers and system engineers. Check out our vacancies or get in touch.

License

BSD (Berkeley Software Distribution) License. Copyright (c) 2013-2018, Mollie B.V.

Support

Contact: www.mollie.cominfo@mollie.com — +31 20-612 88 55

Package Sidebar

Install

npm i mollie-api-node

Weekly Downloads

598

Version

1.4.0

License

BSD-3-Clause

Unpacked Size

1.6 MB

Total Files

69

Last publish

Collaborators

  • dabroek
  • faapz
  • kenanjapalak
  • lvgunst
  • mollienl
  • thijs_riezebeek