module BWAPI::Client::Brandwatch::Clients::CommandCenter::SceneTypes

SceneTypes module for brandwatch/clients/{client_id}/commandcenter/scenetypes endpoints

Public Instance Methods

brandwatch_scene_types(client_id) click to toggle source

Fetch all scene types enabled for given client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/scene_types.rb, line 11
def brandwatch_scene_types(client_id)
  get "/brandwatch/clients/#{client_id}/commandcenter/scenetypes"
end
brandwatch_update_scene_type(client_id, opts = {}) click to toggle source

Alter Vizia scene types enabled for client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/scene_types.rb, line 18
def brandwatch_update_scene_type(client_id, opts = {})
  put "/brandwatch/clients/#{client_id}/commandcenter/scenetypes", opts
end