# Licensed under the oDesk's API Terms of Use; # you may not use this file except in compliance with the Terms. # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Author:: Maksym Novozhylov (mnovozhilov@odesk.com) # Copyright:: Copyright 2014(c) oDesk.com # License:: See LICENSE.txt and TOS - https://developers.odesk.com/api-tos.html module Odesk module Api module Routers module Organization # Companies inside Organization class Companies ENTRY_POINT = 'api' # Init # # Arguments: # client: (Client) def initialize(client) @client = client @client.epoint = ENTRY_POINT end # Get Companies Info def get_list $LOG.i "running " + __method__.to_s @client.get '/hr/v2/companies' end # Get Specific Company # # Arguments: # company_reference: (String) def get_specific(company_reference) $LOG.i "running " + __method__.to_s @client.get '/hr/v2/companies/' + company_reference end # Get Teams in Company # # Arguments: # company_reference: (String) def get_teams(company_reference) $LOG.i "running " + __method__.to_s @client.get '/hr/v2/companies/' + company_reference + '/teams' end # Get Users in Company # # Arguments: # company_reference: (String) def get_users(company_reference) $LOG.i "running " + __method__.to_s @client.get '/hr/v2/companies/' + company_reference + '/users' end end end end end end