n8n-nodes-rd-station-crm
Version:
n8n community node for RD Station CRM: API v1 (private token) and API v2 (OAuth2) — contacts, deals, organizations, tasks, notes, pipelines, stages, products, custom fields, sources, campaigns, loss reasons, users, teams and a real webhook trigger.
14 lines (13 loc) • 487 B
TypeScript
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class RdStationCrmApi implements ICredentialType {
name: string;
displayName: string;
icon: {
readonly light: "file:rdStationCrm.svg";
readonly dark: "file:rdStationCrm.dark.svg";
};
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}