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

Access module for brandwatch/client/{client_id}/commandcenter/users/{user_id}/access endpoints

Public Instance Methods

brandwatch_delete_user_access_level(client_id, user_id, access_level) click to toggle source

Revoke a user's Vizia access

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/users/access.rb, line 19
def brandwatch_delete_user_access_level(client_id, user_id, access_level)
  delete "brandwatch/clients/#{client_id}/commandcenter/users/#{user_id}/access/#{access_level}"
end
brandwatch_update_user_access_level(client_id, user_id, access_level) click to toggle source

Update a user's Vizia access level

TODO: Add parameters documentation

# File lib/bwapi/client/brandwatch/clients/command_center/users/access.rb, line 12
def brandwatch_update_user_access_level(client_id, user_id, access_level)
  put "brandwatch/clients/#{client_id}/commandcenter/users/#{user_id}/access/#{access_level}"
end