synctera-webhooks

Installation
SKILL.md

Synctera Webhooks

When to Use This Skill

  • How do I receive Synctera webhooks?
  • How do I verify Synctera webhook signatures (Synctera-Signature)?
  • How do I handle ACCOUNT.UPDATED or TRANSACTIONS.POSTED.CREATED events?
  • Why is my Synctera webhook signature verification failing?
  • How do I generate a Synctera webhook signing secret?

Verification (core)

Synctera uses a custom HMAC scheme (not Standard Webhooks). Each delivery has two headers:

  • Synctera-Signature — the hex-encoded signature (two .-delimited signatures during secret rotation)
  • Request-Timestamp — POSIX seconds used in the signed string

The signed string is `${Request-Timestamp}.${raw_body}` (the . is a literal separator). Compute HMAC-SHA256(secret, signed_string) and hex-encode. The secret is not your API key — generate it with POST /v0/webhook_secrets (empty body) and store it. Verify against the raw body; don't JSON.parse first.

Installs
7
GitHub Stars
81
First Seen
Jul 28, 2026
synctera-webhooks — hookdeck/webhook-skills