Asynchronously soft-deletes data items and their derivative results from database tables, raw buckets, and processed buckets.
Deleting a data entry removes all associated raw data, processed data, and analysis results.
Array of data entry UUIDs to delete (passed as repeated query parameters)
If true, permanently deletes the data. If false, performs a soft delete.
Response
Returns an array of UUIDs that were successfully deleted.
curl -X DELETE "https://api.atomscale.ai/data_entries/?data_ids=d290f1ee-6c54-4b01-90e6-d701748f0851&data_ids=a1b2c3d4-5678-90ab-cdef-1234567890ab" \
-H "X-API-KEY: YOUR_API_KEY"
[
"d290f1ee-6c54-4b01-90e6-d701748f0851",
"a1b2c3d4-5678-90ab-cdef-1234567890ab"
]