import { IExecuteFunctions, IHookFunctions, } from 'n8n-core'; import { IDataObject, NodeApiError, NodeOperationError, } from 'n8n-workflow'; /** * Make an API request to Twilio * * @param {IHookFunctions} this * @param {string} method * @param {string} url * @param {object} body * @returns {Promise} */ export async function twilioApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise { // tslint:disable-line:no-any const credentials = this.getCredentials('twilioApi'); if (credentials === undefined) { throw new NodeOperationError(this.getNode(), 'No credentials got returned!'); } if (query === undefined) { query = {}; } const options = { method, form: body, qs: query, uri: `https://api.twilio.com/2010-04-01/Accounts/${credentials.accountSid}${endpoint}`, auth: { user: credentials.accountSid as string, pass: credentials.authToken as string, }, json: true, }; try { return await this.helpers.request(options); } catch (error) { throw new NodeApiError(this.getNode(), error); } }