chargify-rest

This library is used to access Chagify API with GET, POST, PUT, and DELETE methods.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
chargify-rest
1.0.65 years ago5 years agoMinified + gzip package size for chargify-rest in KB

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

chargify_rest_client.get('url')
    .then(function(res) {})
	.catch(function(err) {});

POST

chargify_rest_client.post('url', data)
	.then(function(res) {})
	.catch(function(err) {});