n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 552 B
text/typescript
/**
* Agile CRM Node - Version 1
* Discriminator: resource=contact, operation=delete
*/
interface Credentials {
agileCrmApi: CredentialReference;
}
/** Delete a contact */
export type AgileCrmV1ContactDeleteParams = {
resource: 'contact';
operation: 'delete';
/**
* ID of contact to delete
*/
contactId?: string | Expression<string> | PlaceholderValue;
};
export type AgileCrmV1ContactDeleteNode = {
type: 'n8n-nodes-base.agileCrm';
version: 1;
credentials?: Credentials;
config: NodeConfig<AgileCrmV1ContactDeleteParams>;
};