n8n/packages/nodes-base/nodes/Wekan/GenericFunctions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
710 B
TypeScript
Raw Normal View History

import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
IHttpRequestMethods,
ILoadOptionsFunctions,
IRequestOptions,
} from 'n8n-workflow';
export async function apiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
endpoint: string,
body: object,
query?: IDataObject,
): Promise<any> {
const credentials = await this.getCredentials('wekanApi');
query = query || {};
const options: IRequestOptions = {
headers: {
Accept: 'application/json',
},
method,
body,
qs: query,
uri: `${credentials.url}/api/${endpoint}`,
json: true,
};
return await this.helpers.requestWithAuthentication.call(this, 'wekanApi', options);
}