mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
c89d2b10f2
* add dlr url column add dlr url(delivery report URl) column. Allow user set the endpoint to receive the report * update update delivery report url description * ⚡ fixed nodelinter issues, added credential test, replaced icon * ⚡ Improvements Co-authored-by: d3no <d3no520@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject, JsonObject, 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<any>}
|
|
*/
|
|
export async function moceanApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
|
|
const credentials = await this.getCredentials('moceanApi');
|
|
if (credentials === undefined) {
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
|
}
|
|
|
|
if (query === undefined) {
|
|
query = {};
|
|
}
|
|
|
|
if (method === 'POST') {
|
|
body['mocean-api-key'] = credentials['mocean-api-key'];
|
|
body['mocean-api-secret'] = credentials['mocean-api-secret'];
|
|
body['mocean-resp-format'] = 'JSON';
|
|
} else if (method === 'GET') {
|
|
query['mocean-api-key'] = credentials['mocean-api-key'];
|
|
query['mocean-api-secret'] = credentials['mocean-api-secret'];
|
|
query['mocean-resp-format'] = 'JSON';
|
|
}
|
|
|
|
const options = {
|
|
method,
|
|
form: body,
|
|
qs: query,
|
|
uri: `https://rest.moceanapi.com${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), (error as JsonObject));
|
|
}
|
|
}
|