Delete ADME prediction data
predictions.adme.delete_data(strid) -> AdmeDeleteDataResponse
POST/compute/v1/predictions/adme/{id}/delete-data
Permanently delete the input, output, and result data associated with this prediction. The prediction record itself is retained with a data_deleted_at timestamp. This action is irreversible.
Delete ADME prediction data
import os
from boltz_api import Boltz
client = Boltz(
api_key=os.environ.get("BOLTZ_API_KEY"), # This is the default and can be omitted
)
response = client.predictions.adme.delete_data(
"id",
)
print(response.id){
"id": "id",
"data_deleted": true,
"data_deleted_at": "2019-12-27T18:11:19.117Z"
}Returns Examples
{
"id": "id",
"data_deleted": true,
"data_deleted_at": "2019-12-27T18:11:19.117Z"
}