Documentation Index
Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
Use this file to discover all available pages before exploring further.
You need to have write permission on the collection to be able to delete datapoints.
Deleting data by datapoint IDs
To delete data from a collection, use the delete method. This method accepts a list of datapoint IDs to delete.Possible errors
NotFoundError: raised if one of the data points is not found in the collection. If any of the data points are not found, nothing will be deletedValueError: raised if one of the specified ids is not a valid UUID
Deleting a time interval
One common way to delete all datapoints in a time interval is to first query it from a collection and then deleting those found datapoints. For this use case it often is a good idea to query the datapoints withskip_data=True to avoid actually
loading the data fields, since only the datapoint IDs are required. See skipping data fields for more details.