1.0.0 • Published 5 years ago

chargify-api v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

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) {});
1.0.0

5 years ago