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

20 lines
353 B
TypeScript
Raw Normal View History

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