An open API service indexing awesome lists of open source software.

https://github.com/web3space/universepay-sdk

API for universepay payment gateway
https://github.com/web3space/universepay-sdk

Last synced: about 2 months ago
JSON representation

API for universepay payment gateway

Awesome Lists containing this project

README

          

# UniversePay API

* Integration manual
* Reviewed by UniversePay department in March 2019
* Approved by Tatjana Stasjuka, UniversePay CEO
* Version 1.2

--------------------------

## Get Started

## Install

`npm i universepay`

## Build API

```Javascript

const universepay = require('universepay');

const config = {
MERCHANT_SECRET : ""
MERCHANT_ID : ""
}

universepay(config, ({ test, prod } )=> {
test.makeRequest(...)
});

```