module ClientsMethods

Module to work with clients api

Public Instance Methods

profile() click to toggle source

Get current user info @return [Array<Hash>] current user info

# File lib/wrata_api/clients_methods.rb, line 7
def profile
  uri = URI.parse("#{@uri}/profile.json")
  perform_get(uri)
end