Node.js module for communicating with the GroupDocs.Signature Cloud API
A package groupdocs-signature-cloud
is available at npmjs.com. You can install it with:
npm install groupdocs-signature-cloud
Please follow the installation procedure and then run the following JavaScript code:
// load the module
var GroupDocs = require('groupdocs-signature-cloud');
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// construct SignatureApi
var config = new GroupDocs.Configuration(appSid, appKey);
config.apiBaseUrl = "https://api.groupdocs.cloud";
var infoApi = GroupDocs.InfoApi.fromConfig(config);
// retrieve supported file-formats
infoApi.getSupportedFileFormats()
.then(function (response) {
console.log("Supported file-formats:")
response.formats.forEach(function (format) {
console.log(format.fileFormat + " (" + format.extension + ")");
});
})
.catch(function (error) {
console.log("Error: " + error.message)
});
Or compile and run same written in TypeScript:
// load the module
import { InfoApi, Configuration } from "groupdocs-signature-cloud";
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
const appSid: string = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
const appKey: string = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// construct Api
const config = new Configuration(appSid, appKey);
config.apiBaseUrl = "https://api.groupdocs.cloud";
const infoApi = InfoApi.fromConfig(config);
// retrieve supported file-formats
infoApi.getSupportedFileFormats()
.then((result) => {
console.log("Supported file-formats:");
result.formats.forEach((format) => {
console.log(format.fileFormat + " (" + format.extension + ")");
});
})
.catch((error) => {
console.log("Error: " + error.message);
});
GroupDocs.Signature Cloud Node.js SDK licensed under MIT License.
Your feedback is very important to us. Please feel free to contact us using our Support Forums.