n8n/packages/nodes-base/nodes/Cockpit/FormFunctions.ts
Elias Meire 100d9bc087
refactor: Add IRequestOptions type to helpers.request for more type safety (no-changelog) (#8563)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-02-14 16:29:09 +01:00

16 lines
454 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);
}