Sorry, no results found for "".
Returns a resource object of type job_result
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const jobResultId = "34";
const jobResult = await client.jobResults.find(jobResultId);
// Check the 'Returned output' tab for the result ☝️ console.log(jobResult);}
run();
{ id: "34", status: 200, payload: { data: { id: 999, type: "item_type", attributes: { some: "attributes" } }, },}