Sha256: 1635912c38c60b20c378b115a36dc7235cc2fe520b875a51bc3cdf2fa731822e
Contents?: true
Size: 1.97 KB
Versions: 2
Compression:
Stored size: 1.97 KB
Contents
.. module:: restcomm.rest.resources ==================== Notifications ==================== For more information, see the `Notifications REST Resource <http://www.restcomm.com/docs/api/rest/notification>`_ documentation. Listing Your Notifications ---------------------------- The following code will print out additional information about each of your current :class:`Notification` resources. .. code-block:: ruby require 'restcomm-ruby' # To find these visit https://www.restcomm.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Restcomm::REST::Client.new account_sid, auth_token @client.notifications.list.each do |notification| puts notification.more_info end You can filter transcriptions by :attr:`log` and :attr:`message_date`. The :attr:`log` value is 0 for `ERROR` and 1 for `WARNING`. .. code-block:: ruby require 'restcomm-ruby' # To find these visit https://www.restcomm.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Restcomm::REST::Client.new account_sid, auth_token ERROR = 0 @client.notifications.list(log=ERROR).each do |notification| puts notification.error_code end .. note:: Due to the potentially voluminous amount of data in a notification, the full HTTP request and response data is only returned in the :class:`Notification` instance resource representation. Deleting Notifications ------------------------ Your account can sometimes generate an inordinate amount of :class:`Notification` resources. The :class:`Notifications` resource allows you to delete unnecessary notifications. .. code-block:: ruby require 'restcomm-ruby' # To find these visit https://www.restcomm.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Restcomm::REST::Client.new account_sid, auth_token @client.notifications.get("NO123").delete()
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
restcomm-ruby-1.2.1 | docs/usage/notifications.rst |
restcomm-ruby-1.2.0 | docs/usage/notifications.rst |