Giter VIP home page Giter VIP logo

new-ovoid-nodejs's Introduction

New Ovoid Nodejs

ovoid-new

a Node.js library for interacting with the OVO (Indonesia Digital Wallet) API. It provides functionality for fetching user balance, order history, wallet transaction history, and notification status.

Updated and working : 14/06/2023

Click Star (โญ) if you like this

Installation

You can install this library by running npm install in your terminal.

npm install ovoid-new

Usage

Below are some examples of how to use this library:

const {OTP,USER} = require('ovoid-new');

let otp = new OTP();

// send number must be in +62 format 
// example +628xxxxxxx
let number = "+628xxxxx";
otp.sendOTP(number)
    .then(data => console.log(data))
    .catch(error => console.error(error));
// will return 
{ 
  ref_id : "xxxxxx",
  device_id: "xxxxx"
}

// Sumbit OTP
otp.submitOTP(number,device_id,otp_code,otp,ref_id)
    .then(data => console.log(data))
    .catch(error => console.error(error));
// will return the otp token 

// loginSecurity
const verif = await otp.loginSecurityCode(security_code,otp_token,number,device_id,otp_ref_id)
 .then(data => console.log(data))
    .catch(error => console.error(error));

Example :

const {OTP,USER} = require('ovoid-new');
async function main(){
    const API = new USER();
    const balance = await  API.getBalance(device_id,token);
    const walletTrx = await API.getOrderHistory(deviceId, otpToken, page, limit, productType);
    
}

main();

Methods

getBalance(deviceId, otpToken)

This method is used to fetch the balance of the user. It requires the deviceId and otpToken.

getOrderHistory(deviceId, otpToken, page, limit, productType)

This method fetches the order history of the user. It requires the deviceId and otpToken. You can also specify the page, limit, and productType parameters.

getWalletTransaction(deviceId, otpToken, limit, transactionTypes)

This method fetches the wallet transaction history of the user. It requires the deviceId and otpToken. You can also specify the limit and transactionTypes parameters.

getNotifications(deviceId, otpToken)

This method fetches the notification status for the user. It requires the deviceId and otpToken.

License

GPL-3.0 license

Code By

Abdul Muttaqin

CP

new-ovoid-nodejs's People

Contributors

fdciabdul avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.