Links

Observation List Delete

https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations
Deletes all Observation objects for an experiment. This action cannot be undone.
Request Method: DELETE

Parameters

This endpoint takes no parameters.

Response

This endpoint returns nothing.

Example Request

Python
Bash
Java
observation = conn.experiments(EXPERIMENT_ID).observations().delete()
OBSERVATION=`curl -s -X DELETE https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations -u "$SIGOPT_API_TOKEN":`
new Experiment(EXPERIMENT_ID).observations().deleteList().call();