@coreh/zoop
v0.3.0
Published
<p align="center"> 🇧🇷 <a href="LEIAME.md">LEIAME em Português</a> <br><br> <a href="https://www.npmjs.com/package/@coreh/zoop"><img src="https://img.shields.io/npm/v/@coreh/zoop.svg"></a> <a href="LICENSE"><img src="https://img.shields.io/npm/l/@coreh/z
Downloads
424
Readme
zoop - Unofficial Client for Zoop API
About
- Isomorphic: Compatible with Browser, Node.JS and React Native environments
- Written in TypeScript: So you get type checking and autocomplete for all API Endpoints and parameters
- Promises / Async Iterables based: So you can use
async
andawait
(ES2016) andfor await
(ES2018) syntax.
Installing
npm install @coreh/zoop
Usage
import Zoop from '@coreh/zoop';
// Create API Client
const zoop = new Zoop(API_KEY);
// Marketplace Endpoint
const marketplace = zoop.marketplace(MARKETPLACE_ID);
// Buyer Endpoint
const buyer = marketplace.buyer(BUYER_ID);
// Retrieve Buyer Info (async)
const buyerInfo = await buyer.get();
// List Buyers (async iterator)
for await (const buyerInfo of marketplace.listBuyers()) {
// ...
}
Implemented Endpoints
Marketplace
- Retrieve
Buyer
- Create
- Retrieve
- List
Transaction
- Create
- Retrieve
- List
Seller
- Create
- Retrieve
- List
Token
- Create Card Token
- Create Bank Account Token
- Retrieve
License
MIT