Class: HipcallSdk::TeamResource

Inherits:
Resource
  • Object
show all
Defined in:
lib/hipcall/resources/teams.rb

Instance Attribute Summary

Attributes inherited from Resource

#client

Instance Method Summary collapse

Methods inherited from Resource

#initialize

Constructor Details

This class inherits a constructor from HipcallSdk::Resource

Instance Method Details

#list(**params) ⇒ Object



3
4
5
6
# File 'lib/hipcall/resources/teams.rb', line 3

def list(**params)
	response = get_request("teams", params: params)
	Collection.from_response(response, key: "data", type: Team)
end

#retrieve(team_id:) ⇒ Object



8
9
10
# File 'lib/hipcall/resources/teams.rb', line 8

def retrieve(team_id:)
	Team.new get_request("teams/#{team_id}").body.dig("data")
end