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

https://github.com/thepeerstack/node-sdk

Thepeer's official node sdk
https://github.com/thepeerstack/node-sdk

backend javascript nodejs packages

Last synced: 2 months ago
JSON representation

Thepeer's official node sdk

Awesome Lists containing this project

README

          

# Thepeer node

## Installation

```bash
npm i thepeer-node
```

## Usage

```js
const thepeer = new Thepeer(secretKey)

let user = thepeer.indexUser("Thor Odin", "thor", "thor@odin.com");
```

### Available methods

* validateSignature
- `accepts`:
- request (object)
- signature (object)
- `returns`: boolean

* authorizeCharge
- `accepts`:
- reference (string)
- event (string)
- `returns`: boolean

* indexUser
- `accepts`:
- name (string)
- email (string)
- identifier (string)
- `returns`: object

* updateUser
- `accepts`:
- reference (string)
- identifier (string)
- `returns`: object

* deleteUser
- `accepts`:
- reference (string)
- `returns`: boolean

* getLink
- `accepts`:
- link_id (string)
- `returns`: object

* chargeLink
- `accepts`:
- link_id (string)
- amount (integer)
- `returns`: object
* getBusinesses
- `accepts`:
- channel (string)
- `returns`: object

## Extra

Refer to the [documentation](https://docs.thepeer.co) for more information.