Source type

Paddle Source Configuration

Paddle sources receive billing, subscription, transaction, product, and customer webhooks with Paddle-Signature verification.

PADDLEPOST, PUT, PATCH, DELETEEndpoint Secret KeyPayments
Paddle sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.PaddleProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLPADDLEProvider credentialsignatureVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

Paddle configuration

Create a Paddle source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Endpoint Secret Key values for provider signature. FastHook uses these settings to validate each Paddle delivery before it enters the routing workflow.

Source Type

PADDLE

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Endpoint Secret Key

Paddle source config
{
  "type": "PADDLE",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "PADDLE",
      "webhook_signing_secret": "provider-secret"
    },
    "allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
  }
}

Paddle request contract

FastHook verifies paddle-signature by signing timestamp + ':' + raw body with HMAC-SHA256.

POSTPUTPATCHDELETE

Paddle headers

Preserve paddle-signature when sending Paddle test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.

paddle-signature

Semicolon-separated ts and h1 signature values.

Paddle setup

  1. Create a Paddle notification destination with the FastHook Source URL.
  2. Paste the endpoint secret key into FastHook.
  3. Keep sandbox and production Paddle endpoints separate.

Continue with Paddle