n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 576 B
text/typescript
/**
* Freshworks CRM Node - Version 1
* Discriminator: resource=contact, operation=get
*/
interface Credentials {
freshworksCrmApi: CredentialReference;
}
/** Retrieve an account */
export type FreshworksCrmV1ContactGetParams = {
resource: 'contact';
operation: 'get';
/**
* ID of the contact to retrieve
*/
contactId?: string | Expression<string> | PlaceholderValue;
};
export type FreshworksCrmV1ContactGetNode = {
type: 'n8n-nodes-base.freshworksCrm';
version: 1;
credentials?: Credentials;
config: NodeConfig<FreshworksCrmV1ContactGetParams>;
};