Method: Booker::Client#create_appointment

Defined in:
lib/booker.rb

#create_appointment(options = {}) ⇒ Object

[View source]

196
197
198
199
200
201
202
203
# File 'lib/booker.rb', line 196

def create_appointment options = {}
  url = build_url "/appointment/create"
  defaults = {
    "access_token" => @access_token,
  }
  convert_time_to_booker_format! options
  return_post_response url, defaults, options
end