Can the Infor ION API send a Get request to a non-Infor API (outside the Infor cloud) and store the replied document in the Data Lake? Is any non-Infor API compatible with, accepted by the Infor ION API, is the only requirement that the document is a JSON file below 3 MB? If yes then could we load directly, without an Enterprise Connector from any e.g. SQL API?
e.g. https://{username}.carto.com/api/v2/sql?api_key={your_api_key}&q=SELECT * FROM {table_name}
e.g. jQuery Call:
$.getJSON('https://{username}.carto.com/api/v2/sql/?q='+sql_statement, function(data) {
$.each(data.rows, function(key, val) {
});
});