Cancel pending or in-progress enhancement operations.
POST
/
v1
/
tables
/
{table_id}
/
enhance
/
cancel
// Cancel all pending enhancementsconst result = await client.enhance.cancel("tbl_abc123");console.log(result.cancelled_count);// Cancel for a specific columnconst result2 = await client.enhance.cancel("tbl_abc123", "description");console.log(result2.cancelled_count);
Only enhancements with pending or processing status can be cancelled. Already completed enhancements are not affected.
// Cancel all pending enhancementsconst result = await client.enhance.cancel("tbl_abc123");console.log(result.cancelled_count);// Cancel for a specific columnconst result2 = await client.enhance.cancel("tbl_abc123", "description");console.log(result2.cancelled_count);
// Cancel all pending enhancementsconst result = await client.enhance.cancel("tbl_abc123");console.log(result.cancelled_count);// Cancel for a specific columnconst result2 = await client.enhance.cancel("tbl_abc123", "description");console.log(result2.cancelled_count);