mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
17 lines
455 B
TypeScript
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);
|
|
}
|