JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q26478F
  • License MIT

package for marasoft APIs

Package Exports

  • marasoft
  • marasoft/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (marasoft) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Marasoft

npm npm NPM

About

This provides easy access to Marasoft APIS. All are properly & fully tested. Available features include:

  • Account: get balance, statement, transfers and transactions.
  • Payment: create dynamic account.
  • Tool: banks, resolve Bank account number, check transaction dtatus, check transfer Status.
  • Transfer: initiate transfer to bank account.
  • USSD: get ussd banks, generate ussd code for payment/collection.

Getting Started

Technologies · Installations · Usage · Components · Tests · Author

Technologies Used

  • ESLint - A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript.
  • Jest - Jest is a JavaScript testing framework maintained by Facebook, Inc. designed and built by Christoph Nakazawa with a focus on simplicity and support for large web applications.
  • Airbnb style guide was followed.
  • TypeScript

Installations

Getting started

  • You need to have your marasoft encoding key and NPM installed on your computer.

Setup

  • Installing the project dependencies

    Run the command below

    $ npm install marasoft

Usage

$ const { Marasoft } = require('marasoft');
$ const  marasoft = new Marasoft('encryptionKey');

Components

  • Account
    • GET ACCOUNT BALANCE
    const { Marasoft } = require('marasoft');
    const  marasoft = new Marasoft('encryptionKey');
    const response = await marasoft.account.balance() 
    • GET STATEMENT
     marasoft.account.statement({
    start_date: '01-01-2024',
    end_date: '20-01-2024'
    }) 
    • GET ACCOUNT TRANSFERS
    const response = await marasoft.account.transfers({
    start_date: '01-01-2024', // required
    end_date: '20-01-2024' // required
    })  
    • GET ACCOUNT TRANSACTIONS - the account collection
    marasoft.account.transactions({
    start_date: '01-01-2024', // required
    end_date: '20-01-2024' // required
    }) 
  • Payment
    • CREATE DYNAMIC ACCOUNT FOR PEOPLE TO TRANSFER TO
    marasoft.payment.generateDynamicAccount({
     amount:"3000", // required
     transaction_ref:"your-transaction-reference" // required
    })
  • TOOL
    • RESOLVE BANK ACCOUNT NUMBER
     marasoft.tool.resolveBank({
     bank_code:"044", // required field
     account_number:"0691660675" // required field
    })  
    • GET BANKS
     marasoft.tool.banks() 
    • GET TRANSACTION STATUS
     marasoft.tool.transactionStatus({
     transaction_ref: 'your-transaction-reference'// required
    }) 
    • GET TRANSFER STATUS
     marasoft.tool.transactionStatus({
     transaction_ref: 'your-transfer-reference'// required
    })
  • Transfer
    • TRANSFER TO ACCOUNT NUMBER
     marasoft.transfer.initiate({
     bank_code:"044", // required field
     account_number:"0691660675" // required field
     transactionRef:"your-transaction-reference" //required field
     amount:"3000" // required field
     description:"" //required
     currency:"NGN" //required
    })  
  • USSD
    • GET USSD BANKS - This describes how to get available ussd banks
    const { Marasoft } = require('marasoft');
    const  marasoft = new Marasoft('encryptionKey');
    const response = await marasoft.ussd.banks() 
    • GET USSD CODE - to make payment using ussd code
    marasoft.ussd.generateUssdCode({
     amount:"3000", // required field
     email_address:"email-address", //required field
     phone_number:"09028238134" // required
     redirect_url:"your-redirect-url", //required field
     request_type:"live" // required field (live or test)
     user_bear_charge:"yes" //required field (yes or no)
     merchant_ref:"", //required
     name:"name", //required
     currency:"NGN", //required
     description:"", //required
     ref_id:"", //required 
     user_bank_code:"044" / REQUIRED
    })

Author