40 lines
1007 B
TypeScript
40 lines
1007 B
TypeScript
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest } from '../../../transport';
|
|
|
|
export async function updateContact(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const id = this.getNodeParameter('contactId', index) as IDataObject;
|
|
const { address, customerId, email, name, notes, phone } = this.getNodeParameter(
|
|
'updateFields',
|
|
index,
|
|
);
|
|
|
|
const qs = {} as IDataObject;
|
|
const requestMethod = 'PUT';
|
|
const endpoint = `contacts/${id}`;
|
|
let body = {} as IDataObject;
|
|
let addressData = address as IDataObject;
|
|
|
|
if (addressData) {
|
|
addressData = addressData.addressFields as IDataObject;
|
|
addressData.address1 = addressData.address;
|
|
}
|
|
|
|
body = {
|
|
...addressData,
|
|
contact_id: id,
|
|
customer_id: customerId,
|
|
email,
|
|
name,
|
|
notes,
|
|
phone,
|
|
};
|
|
|
|
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
|
|
return this.helpers.returnJsonArray(responseData as IDataObject);
|
|
}
|