class TACore::App

> Application class methods

Public Class Methods

all(token) click to toggle source

Get Details on all Applications @param token [String] Application Token after Authentication @return [Object] in JSON format

# File lib/tacore/app.rb, line 14
def self.all(token)
  request(:get, '/application/all', {}, {"token": token})
end
devices(token) click to toggle source

Get all Iris devices assigned to your application @param token [String] Application Token after Authentication @return [Object] in JSON format

# File lib/tacore/app.rb, line 21
def self.devices(token)
  request(:get, '/application/devices', {}, {"token": token})
end
find(token) click to toggle source

Get details on a specific application by token @param token [String] Application Token after Authentication @return [Object] in JSON format

# File lib/tacore/app.rb, line 7
def self.find(token)
  request(:get, '/application/',{}, {"token": token})
end
gateways(token) click to toggle source

Get all Cirrus gateways assigned to your application @param token [String] Application Token after Authentication @return [Object] in JSON format

# File lib/tacore/app.rb, line 28
def self.gateways(token)
  request(:get, '/application/gateways', {}, {"token": token})
end