Přejít na hlavní obsah
DELETE
/
v1
/
files
/
{file_id}
await client.files.delete("file_abc123");
client.files.delete("file_abc123")
curl -X DELETE "https://hub.banditshq.com/api/v1/files/file_abc123" \
  -H "Authorization: Bearer lasso_..."

Parametry cesty

file_id
string
povinné
Jedinečný identifikátor souboru ke smazání.

Odpověď

Při úspěchu vrací 204 No Content. Soubor je odstraněn z úložiště a jeho metadata jsou smazána.
Pokud byla s tímto souborem vytvořena tabulka, tabulka a její extrahovaná data nejsou ovlivněna. Smazán je pouze původní zdrojový soubor.
await client.files.delete("file_abc123");
client.files.delete("file_abc123")
curl -X DELETE "https://hub.banditshq.com/api/v1/files/file_abc123" \
  -H "Authorization: Bearer lasso_..."