n8n-nodes-binalyze-air
Version:
Binalyze AIR nodes for automating DFIR with n8n workflows
12 lines • 599 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.api = void 0;
const helpers_1 = require("../../../utils/helpers");
exports.api = {
async getTaskAssignments(context, credentials, taskId) {
const requestOptions = (0, helpers_1.buildRequestOptionsWithErrorHandling)(credentials, 'GET', `/api/public/tasks/${taskId}/assignments`);
const response = await (0, helpers_1.makeApiRequestWithErrorHandling)(context, requestOptions, `fetch task assignments for task ${taskId}`);
return response;
},
};
//# sourceMappingURL=assignments.js.map