Method: Mints::Contact#me

Defined in:
lib/contact.rb

#me(options = nil) ⇒ Object

Me.

Get contact logged info.

Parameters

# options

(Hash) – List of Resource collection Options shown above can be used as parameter.

First Example

@data = @mints_contact.me

Second Example

options = { 
  attributes: true,
  taxonomies: true
} 
@data = @mints_contact.me(options)


180
181
182
# File 'lib/contact.rb', line 180

def me(options = nil)
  @client.raw('get', '/me', options, nil, @contact_v1_url)
end