n8n-nodes-attio
Version:
n8n node for Attio API integration
33 lines • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttioApi = void 0;
class AttioApi {
constructor() {
this.name = 'attioApi';
this.displayName = 'Attio API';
this.documentationUrl = 'https://attio.com/help/reference/authentication';
this.properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
default: '',
required: true,
typeOptions: {
password: true,
},
description: 'Your Attio API access token',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.accessToken}}',
},
},
};
}
}
exports.AttioApi = AttioApi;
//# sourceMappingURL=AttioApi.credentials.js.map