Class: Mandrill::Webhooks
- Inherits:
-
Object
- Object
- Mandrill::Webhooks
- Defined in:
- lib/mandrill/api.rb
Instance Attribute Summary collapse
-
#master ⇒ Object
Returns the value of attribute master.
Instance Method Summary collapse
-
#add(url, description = nil, events = []) ⇒ Hash
Add a new webhook.
-
#delete(id) ⇒ Hash
Delete an existing webhook.
-
#info(id) ⇒ Hash
Given the ID of an existing webhook, return the data about it.
-
#initialize(master) ⇒ Webhooks
constructor
A new instance of Webhooks.
-
#list ⇒ Array
Get the list of all webhooks defined on the account.
-
#update(id, url, description = nil, events = []) ⇒ Hash
Update an existing webhook.
Constructor Details
#initialize(master) ⇒ Webhooks
Returns a new instance of Webhooks.
1045 1046 1047 |
# File 'lib/mandrill/api.rb', line 1045 def initialize(master) @master = master end |
Instance Attribute Details
#master ⇒ Object
Returns the value of attribute master.
1043 1044 1045 |
# File 'lib/mandrill/api.rb', line 1043 def master @master end |
Instance Method Details
#add(url, description = nil, events = []) ⇒ Hash
Add a new webhook
1085 1086 1087 1088 |
# File 'lib/mandrill/api.rb', line 1085 def add(url, description=nil, events=[]) _params = {:url => url, :description => description, :events => events} return @master.call 'webhooks/add', _params end |
#delete(id) ⇒ Hash
Delete an existing webhook
1146 1147 1148 1149 |
# File 'lib/mandrill/api.rb', line 1146 def delete(id) _params = {:id => id} return @master.call 'webhooks/delete', _params end |
#info(id) ⇒ Hash
Given the ID of an existing webhook, return the data about it
1104 1105 1106 1107 |
# File 'lib/mandrill/api.rb', line 1104 def info(id) _params = {:id => id} return @master.call 'webhooks/info', _params end |
#list ⇒ Array
Get the list of all webhooks defined on the account
1063 1064 1065 1066 |
# File 'lib/mandrill/api.rb', line 1063 def list() _params = {} return @master.call 'webhooks/list', _params end |
#update(id, url, description = nil, events = []) ⇒ Hash
Update an existing webhook
1127 1128 1129 1130 |
# File 'lib/mandrill/api.rb', line 1127 def update(id, url, description=nil, events=[]) _params = {:id => id, :url => url, :description => description, :events => events} return @master.call 'webhooks/update', _params end |