mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
8bd99e0600
* 🔥 Remove impertinent Jsdocs comments
* Lint fixes
39 lines
803 B
TypeScript
39 lines
803 B
TypeScript
import { IExecuteFunctions, IHookFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to MSG91
|
|
*
|
|
*/
|
|
export async function msg91ApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: IDataObject,
|
|
query?: IDataObject,
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
const credentials = await this.getCredentials('msg91Api');
|
|
|
|
if (query === undefined) {
|
|
query = {};
|
|
}
|
|
|
|
query.authkey = credentials.authkey as string;
|
|
|
|
const options = {
|
|
method,
|
|
form: body,
|
|
qs: query,
|
|
uri: `https://api.msg91.com/api${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|