Intercom node

This commit is contained in:
Ricardo Espinoza
2019-11-16 18:47:28 -05:00
parent 7a19837833
commit 3cfcbead71
4 changed files with 117 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
import { IDataObject } from "n8n-workflow";
export interface ILeadCompany {
company_id?: string;
}
export interface ILead {
email: string;
phone?: string;
name?: string;
custom_attributes?: IDataObject;
companies?: ILeadCompany[];
last_request_at?: number;
unsubscribed_from_emails?: boolean;
update_last_request_at?: boolean;
}