JavaScript
Add Studio.js to your Node.js JavaScript projects to programmatically upload photos and process jobs in your applications.
Quick Start
Install using the node package manager npm:
npm install skylab-studio
Usage
Jobs, photos, profiles, and more can be programmatically created, edited, and deleted via the Studio JavaScript SDK as so:
var api = require('skylab-Studio')('API_KEY');
var callback = function(err, response) {
if (err) {
console.log(err.statusCode, response);
} else {
console.log(response);
}
};
api.createJob(data, callback);
All callbacks accept err
and response
.
For a list of all available methods, please consult the official package documentation.
Help / Support
If you run into any issues, please emails us at [email protected]
For bug reports, please open an issue on GitHub.
Updated over 2 years ago