Documentation Index
Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Parametry cesty
Jedinečný identifikátor tabulky.
Tělo požadavku
Zrušení obohacení pouze pro konkrétní sloupec. Vynechte pro zrušení všech čekajících obohacení.
Odpověď
Počet zrušených operací obohacení.
Zrušit lze pouze obohacení se stavem pending nebo processing. Již dokončená obohacení nejsou ovlivněna.
// Cancel all pending enhancements
const result = await client.enhance.cancel("tbl_abc123");
console.log(result.cancelled_count);
// Cancel for a specific column
const result2 = await client.enhance.cancel("tbl_abc123", "description");
console.log(result2.cancelled_count);
{
"cancelled_count": 12
}