module BWAPI::Client::Brandwatch::Clients::CommandCenter::Themes

Themes module for brandwatch/client/{client_id}/commandcenter/themes endpoints

Public Instance Methods

brandwatch_client_create_themes(client_id, theme_id) click to toggle source

Add Vizia themes to a client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/themes.rb, line 18
def brandwatch_client_create_themes(client_id, theme_id)
  post "brandwatch/clients/#{client_id}/commandcenter/themes/#{theme_id}"
end
brandwatch_client_delete_themes(client_id, theme_id) click to toggle source

Remove Vizia themes from a client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/themes.rb, line 25
def brandwatch_client_delete_themes(client_id, theme_id)
  delete "brandwatch/clients/#{client_id}/commandcenter/themes/#{theme_id}"
end
brandwatch_client_themes(client_id) click to toggle source

Get Vizia themes enabled for client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/themes.rb, line 11
def brandwatch_client_themes(client_id)
  get "brandwatch/clients/#{client_id}/commandcenter/themes"
end