Method: Calendly::Organization#webhooks
- Defined in:
- lib/calendly/models/organization.rb
#webhooks(opts = {}) ⇒ Array<Calendly::WebhookSubscription>
Get List of organization scope Webhooks associated with self.
Accepts comma-separated list of field:direction values.
92 93 94 95 96 97 |
# File 'lib/calendly/models/organization.rb', line 92 def webhooks(opts = {}) return @cached_webhooks if @cached_webhooks request_proc = proc { || client.webhooks uri, } @cached_webhooks = auto_pagination request_proc, opts end |