class Freee::Company
Public Class Methods
list()
click to toggle source
# File lib/freee/company.rb, line 3 def self.list Freee.client.get('/api/1/companies', :company) end
list_of_details(company_id)
click to toggle source
# File lib/freee/company.rb, line 7 def self.list_of_details(company_id) Freee.client.get("/api/1/companies/#{company_id.to_i}", :company) end
Also aliased as: show