n8n/packages/nodes-base/credentials/ActiveCampaignApi.credentials.ts
2021-06-12 18:39:55 +02:00

26 lines
455 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class ActiveCampaignApi implements ICredentialType {
name = 'activeCampaignApi';
displayName = 'ActiveCampaign API';
documentationUrl = 'activeCampaign';
properties: INodeProperties[] = [
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: '',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}