class Snap::Api::Outbound
Interact with the snap outbound endpoint.
Public Class Methods
acknowledge(id:)
click to toggle source
# File lib/snap/api/outbound.rb, line 12 def self.acknowledge(id:) client.put("/snapoutbound/#{id}") end
index(top: 1000)
click to toggle source
# File lib/snap/api/outbound.rb, line 8 def self.index(top: 1000) client.get('/snapoutbound', query: { '$top': top }) end
model()
click to toggle source
# File lib/snap/api/outbound.rb, line 16 def self.model Snap::OutboundList end