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
- Host: GitHub
- URL: https://github.com/web3space/universepay-sdk
- Owner: web3space
- Created: 2019-05-12T17:39:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T22:45:43.000Z (over 3 years ago)
- Last Synced: 2025-07-01T11:50:07.732Z (12 months ago)
- Language: LiveScript
- Homepage: http://universelaw.eu
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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(...)
});
```