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

Parametry cesty

schema_id
string
povinné
Jedinečný identifikátor schématu ke smazání.

Odpověď

Při úspěchu vrací 204 No Content.
Smazání schématu nesmaže tabulky, které s ním byly vytvořeny. Tyto tabulky si zachovají své definice sloupců.
await client.schemas.delete("schema_abc123");
client.schemas.delete("schema_abc123")
curl -X DELETE "https://hub.banditshq.com/api/v1/schemas/schema_abc123" \
  -H "Authorization: Bearer lasso_..."