module BWAPI::Client::Brandwatch::Clients::CommandCenter::Limits

Limits module for brandwatch/clients/{client_id}/commandcenter/limits endpoints

Public Instance Methods

brandwatch_create_vizia_limits(client_id, opts = {}) click to toggle source

Create limits for a Vizia client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/limits.rb, line 18
def brandwatch_create_vizia_limits(client_id, opts = {})
  post "/brandwatch/clients/#{client_id}/commandcenter/limits", opts
end
brandwatch_update_vizia_limits(client_id, opts = {}) click to toggle source

Update limits for a Vizia client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/limits.rb, line 25
def brandwatch_update_vizia_limits(client_id, opts = {})
  put "/brandwatch/clients/#{client_id}/commandcenter/limits", opts
end
brandwatch_vizia_limits(client_id) click to toggle source

Fetch configured limits for a Vizia client

TODO: Add parameters documentation

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