import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const run = await client.dataframer.runs.update('run_id');
console.log(run);{}Update a run (only certain fields)
import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const run = await client.dataframer.runs.update('run_id');
console.log(run);{}