Delete Feature.

DELETE /api/teams/{team}/features/{feature}


Deleting a feature is permanent and cannot be undone.

Path parameters

  • team integer Required

    The ID of the team that the feature belongs to.

  • feature string Required

    The key of the feature 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}/features/{feature}
curl \
 -X DELETE https://checkmango.com/api/teams/14/features/et \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}