module HomeAway::API::Domain::Me

Public Instance Methods

me() click to toggle source

Returns information about the logged in user.

analogous to calling a GET on API url /public/me

@note user must be logged in via 3 legged oauth to call this function without error

@return [HomeAway::API::Response] the result of the call to the API

# File lib/homeaway/api/domain/me.rb, line 29
def me
  get '/public/me', {}
end