Source type

Zendesk Source Configuration

Zendesk sources receive Support, Guide, Gather, and Messaging webhook activity with timestamped Zendesk signature verification.

ZENDESKPOST, PUT, PATCH, DELETEWebhook Signing SecretProductivity
Zendesk sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.ZendeskProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLZENDESKProvider 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.

Zendesk configuration

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

Source Type

ZENDESK

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Webhook Signing Secret

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

Zendesk request contract

FastHook signs timestamp + raw body with HMAC-SHA256 and compares the base64 digest to x-zendesk-webhook-signature.

POSTPUTPATCHDELETE

Zendesk headers

Preserve x-zendesk-webhook-signature, x-zendesk-webhook-signature-timestamp when sending Zendesk 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.

x-zendesk-webhook-signature

Base64 HMAC-SHA256 signature.

x-zendesk-webhook-signature-timestamp

ISO timestamp concatenated with the raw body before signing.

Zendesk setup

  1. Create a Zendesk webhook with the FastHook Source URL.
  2. Paste the Zendesk signing secret into FastHook.
  3. Use tags, ticket ids, or event types for downstream routing.

Continue with Zendesk