Links

Observation Delete

https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations/OBSERVATION_ID
Deletes an Observation. 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(OBSERVATION_ID).delete()
OBSERVATION=`curl -s -X DELETE https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations/OBSERVATION_ID -u "$SIGOPT_API_TOKEN":`
new Experiment(EXPERIMENT_ID).observations(OBSERVATION_ID).delete().call();