mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
100d9bc087
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
48 lines
950 B
TypeScript
48 lines
950 B
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
IDataObject,
|
|
JsonObject,
|
|
IHttpRequestMethods,
|
|
IRequestOptions,
|
|
} from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to Plivo.
|
|
*
|
|
*/
|
|
export async function plivoApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
) {
|
|
const credentials = (await this.getCredentials('plivoApi')) as {
|
|
authId: string;
|
|
authToken: string;
|
|
};
|
|
|
|
const options: IRequestOptions = {
|
|
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 as JsonObject);
|
|
}
|
|
}
|