chargify-api
v1.0.0
Published
This library is used to access Chagify API with GET, POST, PUT, and DELETE methods.
Downloads
3
Readme
Chagify API
This library is used to access Chagify API with GET, POST, PUT, and DELETE methods.
Usage
ES5
var chargify_rest = require('chargify_rest');
var chargify_rest_client = new chargify_rest.chargify('SUBDOMAIN', 'API_KEY');
ES6
import { chargify } from 'chargify_rest';
const chargify_rest_client = new chargify('SUBDOMAIN', 'API_KEY');
Method Usage
GET
.then(function(res) {})
.catch(function(err) {});
POST
chargify_rest_client.post('url', data)
.then(function(res) {})
.catch(function(err) {});