Delete Participant.
Deleting a participant is permanent and cannot be undone.
        DELETE
    /api/teams/{team}/participants/{participant}
  
  curl \
 -X DELETE https://checkmango.com/api/teams/13/participants/facilis \
 -H "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (403)
  
  {
  "message": "Unauthenticated."
}
        Response examples (404)
  
  {
  "message": "Not Found"
}