class Kintone::Command::Apis

Public Class Methods

path() click to toggle source
# File lib/kintone/command/apis.rb, line 4
def self.path
  'apis'
end

Public Instance Methods

get() click to toggle source
# File lib/kintone/command/apis.rb, line 8
def get
  @api.get(@url)
end
get_details_of(link) click to toggle source
# File lib/kintone/command/apis.rb, line 12
def get_details_of(link)
  url = Kintone::Api::BASE_PATH + link
  @api.get(url)
end
get_details_of_key(key) click to toggle source
# File lib/kintone/command/apis.rb, line 17
def get_details_of_key(key)
  response = get
  link = response['apis'][key]['link']
  get_details_of(link)
end