n8n-nodes-base
Version:
Base nodes of n8n
38 lines • 1.32 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.acuitySchedulingApiRequest = acuitySchedulingApiRequest;
const n8n_workflow_1 = require("n8n-workflow");
async function acuitySchedulingApiRequest(method, resource, body = {}, qs = {}, uri, _option = {}) {
const authenticationMethod = this.getNodeParameter('authentication', 0);
const options = {
headers: {
'Content-Type': 'application/json',
},
auth: {},
method,
qs,
body,
uri: uri || `https://acuityscheduling.com/api/v1${resource}`,
json: true,
};
try {
if (authenticationMethod === 'apiKey') {
const credentials = await this.getCredentials('acuitySchedulingApi');
options.auth = {
user: credentials.userId,
password: credentials.apiKey,
};
return await this.helpers.request(options);
}
else {
delete options.auth;
return await this.helpers.requestOAuth2.call(this, 'acuitySchedulingOAuth2Api', options,
//@ts-ignore
true);
}
}
catch (error) {
throw new n8n_workflow_1.NodeApiError(this.getNode(), error);
}
}
//# sourceMappingURL=GenericFunctions.js.map