Source type

Auth0 Source Configuration

Auth0 sources receive custom log stream webhook events and verify the optional Authorization token configured in Auth0.

AUTH0POST, PUT, PATCH, DELETEAuthorization Header ValueIdentity
Auth0 sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.Auth0ProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLAUTH0Provider credentialheader authVerify 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.

Auth0 configuration

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

Source Type

AUTH0

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Authorization Header Value

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

Auth0 request contract

FastHook compares the Authorization header with the configured value and does not need to read the raw body for this provider.

POSTPUTPATCHDELETE

Auth0 headers

Preserve authorization when sending Auth0 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.

authorization

Static Authorization Token configured on the Auth0 custom webhook stream.

Auth0 setup

  1. Create an Auth0 Custom Webhook log stream using the FastHook Source URL.
  2. Configure an Authorization Token in Auth0.
  3. Paste the same value into FastHook; FastHook accepts exact or Bearer-prefixed values.

Continue with Auth0