module BWAPI::Client::Brandwatch::Clients::CommandCenter::Users

Users module for brandwatch/client/{client_id}/commandcenter/users endpoints

Public Instance Methods

brandwatch_user_access_level(client_id, user_id) click to toggle source

Fetch a single user's Vizia access level

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/users.rb, line 20
def brandwatch_user_access_level(client_id, user_id)
  get "brandwatch/clients/#{client_id}/commandcenter/users/#{user_id}"
end
brandwatch_users_access_levels(client_id) click to toggle source

Fetch Vizia access levels for all users in client

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/users.rb, line 13
def brandwatch_users_access_levels(client_id)
  get "brandwatch/clients/#{client_id}/commandcenter/users"
end