Method: Mints::Contact#me

Defined in:
lib/contact.rb

#me(options = nil) ⇒ Object

Me.

Get contact logged info.

First Example

@mints_contact.me

Second Example

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


174
175
176
# File 'lib/contact.rb', line 174

def me(options = nil)
  return @client.raw("get", "/contacts/me", options)
end