This actor takes JSON at input, creates it as XLS from the execution ID result and then sends a link by email. The URL is also outputted in the log. Solves attaching XLS files to emails.
- Modified
- Used by2 users
- Used412 times
- API
- Source code
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token.
const Apify = require('apify');
// Set API token
Apify.client.setOptions({ token: '<YOUR_API_TOKEN>' });
// Prepare actor input
const input = {};
// Run the actor
const run = await Apify.call('vaclavrut/executionid-to-xls-and-send', input);
// Print actor output (if any)
console.log('Output');
console.dir(run.output);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const dataset = await Apify.openDataset(run.defaultDatasetId, { forceCloud: true });
await dataset.forEach(async (item, index) => {
console.log(JSON.stringify(item));
});