Delete Evaluation Job#

To delete an evaluation job, send a DELETE request to the jobs endpoint. You must provide the ID of the job as shown in the following code.


Options#

API#

curl -X "DELETE" "${EVALUATOR_SERVICE_URL}/v1/evaluation/jobs/<job-id>" \
  -H 'accept: application/json'
endpoint = f"{EVALUATOR_SERVICE_URL}/v1/evaluation/jobs/<job-id>"
response = requests.delete(endpoint).json()
response