Code Monkey home page Code Monkey logo

mobile-money-api-javascript's Introduction

Chipdeals Mobile Money Api - Javascript

Learn how to simply integrate mobile money payment on your website directly in your html.

Requirement

You only need to have basics knowledge in Html and Css. If you Know Javascript, it is good but not required to make great things.

Demo

You can see the demo page of what you will be able to make

Integrating the widget is very simple

1. Api Key

Contact Us and get an api key to perform chipdeals requests

But you can use the test apiKey to start now.

Test ApiKey: test_FOdigzgSopV8GZggZa89

2. Include script

#Add these payment libraries to your script section. It is either in your head tags or at the end of your body tag

<script
  src="https://cdn.jsdelivr.net/gh/Chipdeals/[email protected]/lib.min.js"
  apiKey="test_FOdigzgSopV8GZggZa89"
  successfulRedirection="https://chipdeals.me/mobile-money"
></script>
  • The attribute src is the Url of the payment library script you are including
  • The attribute apiKey is the apiKey we got in previous step
  • The attribute successfulRedirection is optional. It contain an url where you want your users to be redirected after they payed

3. Add Payment Button

Add this payment button to your code.

The Button must contain class chipdeals-button to allow our script to find it and add click listener.

<button class="chipdeals-button" amount="3000">Pay 3000 XOF</button>

4. Congratulation

When you click your button, Chipdeals payment widget will appear and users can perform transactions simply.

You can do more, and customize your payment

Payment Customization

Most customization you want to do is available via attributes you can add or remove to payment button

Customization List:

attributes Required? meaning
amount Yes The amount you want user to pay
currency No The currency of the amount. Default is XOF
img No Url of the product you want user to pay for
name No The name of the product you want user to pay for
addFeeToUser No If you add this attribute to your button, we will calculate the payment fees on the amount the user will pay. Ex if fees are 2% we will ask user to pay 1020 XOF for an amount of 1000 XOF

Samples

Currency
<button class="chipdeals-button" amount="3000" currency="XOF">Pay Now</button>
Image
<button
  class="chipdeals-button"
  amount="3000"
  img="https://chipdeals.me/images/icon_chipdeal.png"
>
  Pay Now
</button>
Name
<button
  class="chipdeals-button"
  amount="3000"
  name="The best product you can imaginate"
>
  Pay Now
</button>
Fees to user
<button class="chipdeals-button" amount="3000" addFeeToUser>Pay Now</button>

Advanced Usage

In your javascript code, you can add handlers to catch transaction state changing events.

Payment Succeeded Event

You can add a handler to get your code executed as soon as user pay successfully.

You need to listen the event chipdealsPaymentSucceeded on document .

Success payment listener sample
document.addEventListener("chipdealsPaymentSucceeded", (event) => {
  console.log(event.detail.description);
  console.log(event.detail);
  /* event.detail
  {
    "status": "success",
    "message": "Successfully processed transaction",
    "title": "Paiement effectué",
    "description": "Paiement a réussi",
    "code": 200,
    "fullTransaction": {
      "reference": "t-66a7879b-2af5-442c-b2ea-caa201c4a039",
      "senderPhoneNumber": "22951010580",
      "senderCountryCode": "BJ",
      "senderOperator": "MTN",
      "senderFirstName": "Dougbe",
      "senderLastName": "Dougbe",
      "status": "success",
      "statusMessage": "Successfully processed transaction",
      "statusMessageCode": 200,
      "startTimestampInSecond": 1685073059,
      "endTimestampInSecond": 1685073071,
      "originalCurrency": "USD",
      "originalAmount": 8,
      "currency": "XOF",
      "amount": 4893,
      "transactionType": "payment",
      "operatorReference": ""
    }
  }
*/
});

Payment Failed Event

You can add a handler to get your code executed when payment failed.

You need to listen the event chipdealsPaymentFailed on document .

Failed payment listener sample
document.addEventListener("chipdealsPaymentFailed", (event) => {
  console.log(event.detail.description);
  console.log(event.detail);
  /* event.detail
  {
    "status": "error",
    "message": "Payer’s payment account balance is low",
    "title": "Paiement non effectué",
    "description": "Vous avez un solde insuffisant pour ce paiement. Réessayez dès que possible",
    "code": 460,
    "fullTransaction": {
      "reference": "t-2bdad088-b563-41ab-90c9-7ebd8988d2ef",
      "senderPhoneNumber": "22951010460",
      "senderCountryCode": "BJ",
      "senderOperator": "MTN",
      "senderFirstName": "Euler",
      "senderLastName": "Dougbe",
      "status": "error",
      "statusMessage": "payer's balance is low",
      "statusMessageCode": 460,
      "startTimestampInSecond": 1685072964,
      "endTimestampInSecond": 1685072972,
      "originalCurrency": "USD",
      "originalAmount": 8,
      "currency": "XOF",
      "amount": 4893,
      "transactionType": "payment",
      "operatorReference": ""
    }
  }
  */
});

Payment Updated Event

You can add a handler to get your code executed as soon as payment state change.

You need to listen the event chipdealsPaymentUpdated on document .

State changed listener sample
document.addEventListener("chipdealsPaymentUpdated", (event) => {
  console.log(event.detail.description);
  console.log(event.detail);
  /* event.detail
  {
    "status": "pending",
    "message": "Data are validated, payment server is working",
    "title": "Veuillez patientez",
    "description": "Nous initialisons le paiement",
    "code": 203,
    "fullTransaction": {
      "reference": "t-3d465ad1-d620-41b8-8bc8-b59f5f12eb72",
      "senderPhoneNumber": "22951010580",
      "senderCountryCode": "BJ",
      "senderOperator": "MTN",
      "senderFirstName": "Euler",
      "senderLastName": "Dougbe",
      "status": "pending",
      "statusMessage": "Data are validated, server is working",
      "statusMessageCode": 203,
      "startTimestampInSecond": 1685072694,
      "endTimestampInSecond": 0,
      "originalCurrency": "USD",
      "originalAmount": 8,
      "currency": "XOF",
      "amount": 4893,
      "transactionType": "payment",
      "operatorReference": ""
    }
  }
  */
});

Contact us

Call us or write us to get your apikey and start getting payment






Copyright (C) 2022 Chipdeals Inc - https://www.chipdeals.me

mobile-money-api-javascript's People

Contributors

euler8100 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.