Information about a scheduled meeting.
Visit official API Doc
Returns information about a specified Event.
Visit official API Doc
client.events.retrieve(uuid: uuid)
#=> #<Calendlyr::Event>
Returns a list of Events.
Visit official API Doc
client.events.list(organization: organization, user: user)
#=> #<Calendlyr::Collection @data=[#<Calendlyr::Event>, ...], @count=nil, @next_page=nil, @next_page_token=nil, @client=#<Calendlyr::Client>>
client.events.list(organization: organization, group: group)
#=> #<Calendlyr::Collection @data=[#<Calendlyr::Event>, ...], @count=nil, @next_page=nil, @next_page_token=nil, @client=#<Calendlyr::Client>>
client.events.list(user: user)
#=> #<Calendlyr::Collection @data=[#<Calendlyr::Event>, ...], @count=nil, @next_page=nil, @next_page_token=nil, @client=#<Calendlyr::Client>>
Cancels specified event.
Visit official API Doc
client.events.cancel(uuid: event_uuid, reason: "I'm bussy")
#=> #<Calendlyr::Events::Cancellation>
event.memberships
#=> [#<Calendlyr::User>, ...]
event.cancel(reason: "I'm bussy")
#=> #<Calendlyr::Events::Cancellation>