n8n/packages/nodes-base/credentials/HighLevelApi.credentials.ts
2021-03-24 08:57:26 +01:00

19 lines
348 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class HighLevelApi implements ICredentialType {
name = 'highLevelApi';
displayName = 'HighLevel API';
documentationUrl = 'highLevel';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}