Skip to main content

Documentation Index

Fetch the complete documentation index at: https://ahen.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

This is a destructive operation, and cannot be undone.
1

Delete data

assuming you already create a table and already add data to it we can now delete data from the table:
Python
# Access your tables
success_table = tables["success"]
warning_table = tables["warning"]
error_table = tables["error"]

# delete data on the table assuming they are already data in the table.
success_table.delete(
    component="AuthService",
    user_id="user123"
)