What's New

New updates and improvements to Jumpstart Pro

← Back

Inbound Webhooks

New
We've made it easier than ever to process inbound webhooks in your Jumpstart Pro Rails applications.

Inbound Webhooks will be received, stored into the database, queued up for processing, and deleted once successfully processed.

Running the generator will create a controller, database model, and background job for processing requests.

± rails g inbound_webhook Zapier
      create  app/controllers/inbound_webhooks/zapier_controller.rb
      create app/jobs/inbound_webhooks/zapier_job.rb
       route  namespace :inbound_webhooks do
                resources :zapier, only: [:create]
              end