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
= {
attributes: true,
taxonomies: true
}
@data = @mints_contact.me()
180 181 182 |
# File 'lib/contact.rb', line 180 def me( = nil) @client.raw('get', '/me', , nil, @contact_v1_url) end |