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

options = {
  "fields": "id, created_at"
}
@data = @mints_contact.get_appointments(options)


367
368
369
# File 'lib/contact.rb', line 367

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