module Frontapp::Client::Teams

Public Instance Methods

get_team(team_id) click to toggle source

Parameters Name Type Description


team_id string Id of the requested team


# File lib/frontapp/client/teams.rb, line 14
def get_team(team_id)
  get("teams/#{team_id}")
end
teams(params = {}) click to toggle source
# File lib/frontapp/client/teams.rb, line 5
def teams(params = {})
  list("teams", params)
end