n8n/packages/nodes-base/credentials/HighLevelApi.credentials.ts

19 lines
348 B
TypeScript
Raw Normal View History

2021-03-24 00:54:13 -07:00
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: '',
},
];
}