Delete Experiment.

DELETE /api/teams/{team}/experiments/{experiment}


Deleting Experiment is permanent and cannot be undone. All collected data and metrics regarding this experiment will be lost.

Path parameters

  • team integer Required

    The ID of the team that the experiment belongs to.

  • experiment string Required

    The experiment key to show.

Responses

  • 403 application/json
    Hide response attribute Show response attribute object
  • 404 application/json
    Hide response attribute Show response attribute object
DELETE /api/teams/{team}/experiments/{experiment}
curl \
 -X DELETE https://checkmango.com/api/teams/10/experiments/MY_NEW_EXPERIMENT \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}