webhook subscriptions

Create a webhook subscription

Create a webhook subscription to deliver webhook notifications to a specified URL endpoint for your application. Requires a destination URL where Dwolla will send notifications and a secret key for webhook validation and security. Returns the location of the created subscription resource. Essential for establishing real-time event notifications and automated integrations with Dwolla's payment processing events.

post/webhook-subscriptions

Headers

Accept'application/vnd.dwolla.v1.hal+json' required

The media type of the response. Must be application/vnd.dwolla.v1.hal+json

Request body

urlstring required
secretstring required

Example request

{
  "url": "http://myapplication.com/webhooks",
  "secret": "sshhhhhh"
}

Response

create

Changes

Changed in 2 of the 34 revisions of this API.33

    • ▲

      request body became required

      request-body-became-required

    • ▲

      removed the media type application/vnd.dwolla.v1.hal for the response with the status

      response-media-type-removed

    • ○

      added the media type application/vnd.dwolla.v1.hal+json for the response with the status

      response-media-type-added

    • ○

      added the non-success response with the status

      response-non-success-status-added

    • ○

      added the non-success response with the status

      response-non-success-status-added

    This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • ▲

      added the new required header request parameter Accept

      new-required-request-parameter