module Selligent::Client::TransactionalBulk

Implements the transactional bulk endpoint

/organizations/:organization/journeys/transcational/bulk/:name/send

Public Instance Methods

send_transactional_bulk(name) click to toggle source

Trigger a bulk journey in a transactional way

@params name [String] The name of the execution that should be sent

# File lib/selligent/client/transactional_bulk.rb, line 12
def send_transactional_bulk(name)
  post "#{base_url}/journeys/transactional/bulk/#{name}/send"
end