Module: BWAPI::Client::Brandwatch::Clients::CommandCenter::Themes
- Included in:
- BWAPI::Client::Brandwatch::Clients::CommandCenter
- Defined in:
- lib/bwapi/client/brandwatch/clients/command_center/themes.rb
Overview
Themes module for brandwatch/client/client_id/commandcenter/themes endpoints
Instance Method Summary collapse
-
#brandwatch_client_create_themes(client_id, theme_id) ⇒ Object
Add Vizia themes to a client.
-
#brandwatch_client_delete_themes(client_id, theme_id) ⇒ Object
Remove Vizia themes from a client.
-
#brandwatch_client_themes(client_id) ⇒ Object
Get Vizia themes enabled for client.
Instance Method Details
#brandwatch_client_create_themes(client_id, theme_id) ⇒ Object
Add Vizia themes to a client
TODO: Add parameters documentation
18 19 20 |
# 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) ⇒ Object
Remove Vizia themes from a client
TODO: Add parameters documentation
25 26 27 |
# 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) ⇒ Object
Get Vizia themes enabled for client
TODO: Add parameters documentation
11 12 13 |
# 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 |