n8n/packages/nodes-base/nodes/Cockpit/FormFunctions.ts
2024-12-19 18:46:14 +01:00

17 lines
455 B
TypeScript

import type { IExecuteFunctions, ILoadOptionsFunctions, IDataObject } from 'n8n-workflow';
import type { IForm } from './FormInterface';
import { cockpitApiRequest } from './GenericFunctions';
export async function submitForm(
this: IExecuteFunctions | ILoadOptionsFunctions,
resourceName: string,
form: IDataObject,
) {
const body: IForm = {
form,
};
return await cockpitApiRequest.call(this, 'POST', `/forms/submit/${resourceName}`, body);
}