import ModerationAPI from '@moderation-api/sdk';
const client = new ModerationAPI({
secretKey: process.env['MODAPI_SECRET_KEY'], // This is the default and can be omitted
});
const response = await client.actions.execute.executeByID('actionId');
console.log(response.ids);
Execute an action on a set of content items in a queue.
JavaScript
Copy
import ModerationAPI from '@moderation-api/sdk';
const client = new ModerationAPI({
secretKey: process.env['MODAPI_SECRET_KEY'], // This is the default and can be omitted
});
const response = await client.actions.execute.executeByID('actionId');
console.log(response.ids);