import type { IDataObject, INodeExecutionData, INodeProperties, IExecuteFunctions, } from 'n8n-workflow'; import { updateDisplayOptions, wrapData } from '../../../../../utils/utilities'; import { webflowApiRequest } from '../../../GenericFunctions'; const properties: INodeProperties[] = [ { displayName: 'Site Name or ID', name: 'siteId', type: 'options', required: true, typeOptions: { loadOptionsMethod: 'getSites', }, default: '', description: 'ID of the site containing the collection whose items to operate on. Choose from the list, or specify an ID using an expression.', }, { displayName: 'Collection Name or ID', name: 'collectionId', type: 'options', required: true, typeOptions: { loadOptionsMethod: 'getCollections', loadOptionsDependsOn: ['siteId'], }, default: '', description: 'ID of the collection whose items to operate on. Choose from the list, or specify an ID using an expression.', }, { displayName: 'Item ID', name: 'itemId', type: 'string', required: true, default: '', description: 'ID of the item to operate on', }, ]; const displayOptions = { show: { resource: ['item'], operation: ['deleteItem'], }, }; export const description = updateDisplayOptions(displayOptions, properties); export async function execute( this: IExecuteFunctions, items: INodeExecutionData[], ): Promise { const returnData: INodeExecutionData[] = []; for (let i = 0; i < items.length; i++) { try { const collectionId = this.getNodeParameter('collectionId', i) as string; const itemId = this.getNodeParameter('itemId', i) as string; let responseData = await webflowApiRequest.call( this, 'DELETE', `/collections/${collectionId}/items/${itemId}`, ); if (responseData.statusCode === 204) { responseData = { success: true }; } else { responseData = { success: false }; } const executionData = this.helpers.constructExecutionMetaData( wrapData(responseData as IDataObject[]), { itemData: { item: i } }, ); returnData.push(...executionData); } catch (error) { if (this.continueOnFail()) { returnData.push({ json: { message: error.message, error } }); continue; } throw error; } } return returnData; }