n8n/packages/nodes-base/nodes/Cockpit/FormFunctions.ts
2020-04-11 20:24:58 +02:00

17 lines
512 B
TypeScript

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