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

19 lines
360 B
TypeScript
Raw Normal View History

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class PhantombusterApi implements ICredentialType {
name = 'phantombusterApi';
displayName = 'Phantombuster API';
documentationUrl = 'phantombuster';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}