fix(HubSpot Node): Fix issue with contact lists not working (#5582)

This commit is contained in:
Jon
2023-09-12 17:04:39 +01:00
committed by GitHub
parent 915cfa0f6a
commit 6e5a4f6a58
3 changed files with 15 additions and 11 deletions

View File

@@ -86,7 +86,7 @@ export const contactListFields: INodeProperties[] = [
default: '',
},
{
displayName: 'List to Add From',
displayName: 'List to Add To',
name: 'listId',
type: 'number',
required: true,

View File

@@ -1152,7 +1152,6 @@ export class HubspotV2 implements INodeType {
`/contacts/v1/lists/${listId}/add`,
body,
);
returnData.push.apply(returnData, responseData as INodeExecutionData[]);
}
//https://legacydocs.hubspot.com/docs/methods/lists/remove_contact_from_list
if (operation === 'remove') {
@@ -1168,8 +1167,12 @@ export class HubspotV2 implements INodeType {
`/contacts/v1/lists/${listId}/remove`,
body,
);
returnData.push.apply(returnData, responseData as INodeExecutionData[]);
}
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray(responseData as IDataObject[]),
{ itemData: { item: 0 } },
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail()) {
returnData.push({ json: { error: (error as JsonObject).message } });