Git Product home page Git Product logo

ovo-payment's Introduction

ovo-payment

NPM

npm version Build Status Coverage Status Known Vulnerabilities NPM download/month NPM download total
OVO payment wrapper class for NodeJS

Usage

This library is refer to OVO documentation version 1.2

Install using NPM

$ npm install ovo-payment

Set Config

Note: config has been changed since 1.1.0 version.

var OVO = require('ovo-payment');

var config = {
    app_id: "xxx",
    app_key: "xxx",
    merchantId: "xxx",
    tid: "xxx",
    mid: "xxx",
    storeCode: "1234",
    mode: "",           // [optional] staging|production, if empty then will use api staging url address
    random: ""          // [optional] if empty then hmac will use _randomizer()
}

Example for Push to Pay

var ovo = new OVO(config);
ovo.type('push')
    .amount(5000)
    .phone('0856')          // your phone must be registered in OVO
    .merchantInvoice('xxx') // you can not use same invoice number if the previous request was failed or canceled
    .send(function(response){
        console.log(response.body);
    });

Example for Reversal Push to Pay

Note: Reversal is used only for timeout or no any response from OVO

var ovo = new OVO(config);
ovo.type('reversal')
    .amount(5000)
    .phone('0856')          // your phone must be registered in OVO
    .merchantInvoice('xxx') // your previous invoice number
    .referenceNumber('xxx') // your previous referenceNumber
    .send(function(response){
        console.log(response.body);
    });

Example for Void Push to Pay

var ovo = new OVO(config);
ovo.type('void')
    .amount(5000)
    .phone('0856')          // your phone must be registered in OVO
    .merchantInvoice('xxx') // your previous invoice number
    .referenceNumber('xxx') // your previous referenceNumber
    .batchNo('xxx')         // your previous batchNo
    .send(function(response){
        console.log(response.body);
    });

Response

We use unirest for request call to endpoint OVO

Unit Test

If you want to playing around with unit test

npm test

ovo-payment's People

Contributors

aalfiann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ovo-payment's Issues

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.