Method: Mints::Contact#get_appointments
- Defined in:
- lib/contact.rb
#get_appointments(options = nil) ⇒ Object
Get Appointments.
Get a collection of appointments.
Parameters
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
First Example
@data = @mints_contact.get_appointments
Second Example
= {
"fields": "id, created_at"
}
@data = @mints_contact.get_appointments()
367 368 369 |
# File 'lib/contact.rb', line 367 def get_appointments( = nil) return @client.raw("get", "/contacts/appointments", ) end |