mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
100d9bc087
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
49 lines
1 KiB
TypeScript
49 lines
1 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
IHttpRequestMethods,
|
|
IRequestOptions,
|
|
JsonObject,
|
|
} from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to seven
|
|
*
|
|
* @param {IHookFunctions | IExecuteFunctions} this
|
|
* @param {object | undefined} data
|
|
*/
|
|
export async function sms77ApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
body: IDataObject,
|
|
qs: IDataObject = {},
|
|
): Promise<any> {
|
|
const options: IRequestOptions = {
|
|
headers: {
|
|
SentWith: 'n8n',
|
|
},
|
|
qs,
|
|
uri: `https://gateway.seven.io/api${endpoint}`,
|
|
json: true,
|
|
method,
|
|
};
|
|
|
|
if (Object.keys(body).length) {
|
|
options.form = body;
|
|
body.json = 1;
|
|
}
|
|
|
|
const response = await this.helpers.requestWithAuthentication.call(this, 'sms77Api', options);
|
|
|
|
if (response.success !== '100') {
|
|
throw new NodeApiError(this.getNode(), response as JsonObject, {
|
|
message: 'Invalid sms77 credentials or API error!',
|
|
});
|
|
}
|
|
|
|
return response;
|
|
}
|