class Github::Orgs::Teams

def remove_member(team_id, member_name, params={})


github.orgs.teams.remove_member 'team-id', 'member-name'
github = Github.new :oauth_token => '...'
= Examples

note: This does not delete the user, it just remove them from the team.
the team is associated with.
have ‘admin’ permissions to the team or be an owner of the org that
In order to remove a user from a team, the authenticated user must
Remove a team member
def remove_member(team_id, member_name, params={})
  assert_presence_of team_id, member_name
  normalize! params
  delete_request("/teams/#{team_id}/members/#{member_name}", params)
end