Add Freshdesk contacts resource (#938)

* Freshdesk - add contact integration

* fix linter errors

*  Small improvements

Co-authored-by: Yonatan Rosemarin <yonatan.r@billrun.com>
This commit is contained in:
Ricardo Espinoza
2020-09-10 15:56:15 -04:00
committed by GitHub
parent 2a6f4ebf86
commit f8223c6e98
4 changed files with 538 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
import {
IDataObject,
} from 'n8n-workflow';
export interface ICreateContactBody {
address?: string;
// avatar?: object;
company_id?: number;
custom_fields?: IDataObject;
description?: string;
email?: string;
job_title?: string;
language?: string;
mobile?: string;
name?: string;
other_companies?: string[];
other_emails?: string[];
phone?: string;
tags?: string[];
time_zone?: string;
twitter_id?: string;
unique_external_id?: string;
view_all_tickets?: boolean;
}