# Data Table Delete
Delete one or more rows from a data table by specifying their row IDs. Supports batch deletion of multiple rows in a single operation.
# Input
Table UID (Required): The unique identifier of the data table to delete rows from.
Row IDs (Required): An array of row IDs to delete.
# Example Row IDs
[1, 2, 3]
Note: This operation is irreversible. Deleted rows cannot be recovered.
# Output
Returns an object containing the number of rows deleted:
{
"deletedCount": 3
}
- deletedCount: The number of rows that were successfully deleted.