n8n-nodes-pdforge
Version:
Pdforge Automate PDF Generation in minutes using AI.Create custom PDF templates in seconds using our AI Agents, fine tune the design with our no-code builder and automate the PDF delivery with our native pdforge node inside n8n. No code or design experien
35 lines • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PdforgeApi = void 0;
class PdforgeApi {
constructor() {
this.name = 'pdforgeApi';
this.displayName = 'Pdforge API';
this.documentationUrl = 'https://docs.pdforge.com/getting-started/authentication';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiKey}}',
},
},
};
this.test = {
request: {
baseURL: 'https://api.pdforge.com/v1',
url: '/integration/templates',
},
};
}
}
exports.PdforgeApi = PdforgeApi;
//# sourceMappingURL=PdforgeApi.credentials.js.map