n8n/packages/nodes-base/nodes/FormIo/GenericFunctions.ts
yehorkardash 8ba12d98b2
feat: Add credential tests for ConvertKit, FormIo (#20361)
Co-authored-by: Michael Kret <michael.k@radency.com>
2025-10-28 10:31:24 +00:00

49 lines
1.1 KiB
TypeScript

import type {
IHookFunctions,
IHttpRequestMethods,
IHttpRequestOptions,
ILoadOptionsFunctions,
IWebhookFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
interface IFormIoCredentials {
environment: 'cloudHosted' | ' selfHosted';
domain?: string;
email: string;
password: string;
}
/**
* Method will call register or list webhooks based on the passed method in the parameter
*/
export async function formIoApiRequest(
this: IHookFunctions | ILoadOptionsFunctions | IWebhookFunctions,
method: IHttpRequestMethods,
endpoint: string,
body = {},
qs = {},
): Promise<any> {
const credentials = await this.getCredentials<IFormIoCredentials>('formIoApi');
const base = credentials.domain || 'https://api.form.io';
const options: IHttpRequestOptions = {
headers: {
'Content-Type': 'application/json',
},
method,
body,
qs,
url: `${base}${endpoint}`,
json: true,
};
try {
return await this.helpers.httpRequestWithAuthentication.call(this, 'formIoApi', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}