n8n/packages/nodes-base/credentials/PipedriveApi.credentials.ts
2020-08-17 14:42:09 +02:00

20 lines
353 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PipedriveApi implements ICredentialType {
name = 'pipedriveApi';
displayName = 'Pipedrive API';
documentationUrl = 'pipedrive';
properties = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}