Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
63 lines
1.4 KiB
TypeScript
63 lines
1.4 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
JsonObject,
|
|
IRequestOptions,
|
|
} from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to Mattermost
|
|
*/
|
|
export async function apiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE',
|
|
endpoint: string,
|
|
body: string[] | IDataObject = {},
|
|
query: IDataObject = {},
|
|
option: IDataObject = {},
|
|
) {
|
|
const credentials = await this.getCredentials('bambooHrApi');
|
|
|
|
//set-up credentials
|
|
const apiKey = credentials.apiKey;
|
|
const subdomain = credentials.subdomain;
|
|
|
|
//set-up uri
|
|
const uri = `https://api.bamboohr.com/api/gateway.php/${subdomain}/v1/${endpoint}`;
|
|
|
|
const options: IRequestOptions = {
|
|
method,
|
|
body,
|
|
qs: query,
|
|
url: uri,
|
|
auth: {
|
|
username: apiKey as string,
|
|
password: 'x',
|
|
},
|
|
json: true,
|
|
};
|
|
|
|
if (Object.keys(option).length) {
|
|
Object.assign(options, option);
|
|
}
|
|
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
|
|
if (!Object.keys(query).length) {
|
|
delete options.qs;
|
|
}
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
const description = error?.response?.headers['x-bamboohr-error-messsage'] || '';
|
|
const message = error?.message || '';
|
|
throw new NodeApiError(this.getNode(), error as JsonObject, { message, description });
|
|
}
|
|
}
|