mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
49 lines
1 KiB
TypeScript
49 lines
1 KiB
TypeScript
import { IExecuteFunctions, IHookFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
/**
|
|
* Make an API request to Plivo.
|
|
*
|
|
* @param {IHookFunctions} this
|
|
* @param {string} method
|
|
* @param {string} url
|
|
* @param {object} body
|
|
* @returns {Promise<any>}
|
|
*/
|
|
export async function plivoApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
) {
|
|
const credentials = (await this.getCredentials('plivoApi')) as {
|
|
authId: string;
|
|
authToken: string;
|
|
};
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
'user-agent': 'plivo-n8n',
|
|
},
|
|
method,
|
|
form: body,
|
|
qs,
|
|
uri: `https://api.plivo.com/v1/Account/${credentials.authId}${endpoint}/`,
|
|
auth: {
|
|
user: credentials.authId,
|
|
pass: credentials.authToken,
|
|
},
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|