@apify/n8n-nodes-apify
Version:
n8n nodes for Apify
22 lines • 1.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.properties = exports.option = exports.name = void 0;
const properties_1 = require("./properties");
const hooks_1 = require("./hooks");
exports.name = 'Get list of actors';
const rawOption = {
name: 'Get List of Actors',
value: 'Get list of actors',
action: 'Get list of actors',
description: 'Gets the list of all Actors that the user created or used The response is a list of objects where each object contains a basic information about a single Actor To only get Actors created by the user add the my 1 query parameter The endpoint supports pagination using the limit and offset parameters and it will not return more than 1000 records By default the records are sorted by the createdAt field in ascending order therefore you can use pagination to incrementally fetch all Actors while new ones are still being created To sort the records in descending order use the desc 1 parameter',
routing: {
request: {
method: 'GET',
url: '=/v2/acts',
},
},
};
const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties);
exports.properties = properties;
exports.option = option;
//# sourceMappingURL=index.js.map