Class: Vonage::ProactiveConnect::Events

Inherits:
Namespace
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/vonage/proactive_connect/events.rb

Defined Under Namespace

Classes: ListResponse

Instance Method Summary collapse

Instance Method Details

#list(**params) ⇒ Object

Deprecated.

Find all events

Examples:

response = proactive_connect.events.list

See Also:



63
64
65
66
67
68
69
# File 'lib/vonage/proactive_connect/events.rb', line 63

def list(**params)
  logger.info('This method is deprecated and will be removed in a future release.')
  path = "/v0.1/bulk/events"
  path += "?#{Params.encode(params)}" unless params.empty?

  request(path, response_class: ListResponse)
end