UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 553 B
/** * Agile CRM Node - Version 1 * Discriminator: resource=contact, operation=get */ interface Credentials { agileCrmApi: CredentialReference; } /** Get a contact */ export type AgileCrmV1ContactGetParams = { resource: 'contact'; operation: 'get'; /** * Unique identifier for a particular contact */ contactId?: string | Expression<string> | PlaceholderValue; }; export type AgileCrmV1ContactGetNode = { type: 'n8n-nodes-base.agileCrm'; version: 1; credentials?: Credentials; config: NodeConfig<AgileCrmV1ContactGetParams>; };