PicaJet

Reference Glossary

Webhook

An automated HTTP callback a DAM sends to another system the instant a defined event occurs, such as an asset being approved, instead of that system having to repeatedly poll for changes.

Why it matters in a DAM

DAM-driven publishing pipelines depend on webhooks to trigger downstream automation the moment an asset's status changes — a webhook firing on 'asset approved' can push the file to a CMS or notify a Slack channel within seconds, while polling the API on a schedule wastes requests and introduces delay proportional to the polling interval. Webhooks are what let a DAM act as an active source of truth inside a real-time workflow, rather than a passive store that other systems have to remember to keep checking.

A worked example

asset.approved Push the asset to a CMS or PIM automatically
asset.deleted Remove the asset from downstream caches or CDNs
metadata.updated Re-sync product data in a connected e-commerce platform

Common mistake

Building a webhook receiver with no retry logic or signature verification, so a downstream outage silently drops events (assets never sync) and there's no way to confirm an incoming payload actually originated from the DAM rather than a spoofed request.

A webhook flips the usual client-server relationship: instead of another system repeatedly asking the DAM ‘has anything changed yet,’ the DAM itself sends an HTTP request to a URL the receiving system registered in advance, the moment a specific event happens. That event-driven push is faster than polling and dramatically cheaper at scale, since the DAM only sends data when there’s actually something to send.

Reliability is where webhook implementations tend to fall short in practice. A receiving system can be down or slow to respond when an event fires, and without retry logic on the sending side, that event — and whatever automation depended on it — is simply lost. Production-grade webhook setups also verify a signature on incoming payloads so the receiver can confirm a request genuinely came from the DAM and wasn’t forged by pointing a fake request at the same endpoint.

Frequently asked

What is a webhook?

An automated HTTP callback a DAM sends to another system the instant a defined event occurs, such as an asset being approved, instead of that system having to repeatedly poll for changes.

How does a webhook differ from polling?

Polling means a system repeatedly asks whether anything has changed; a webhook flips that so the DAM itself sends a request to a registered URL the moment the event happens, which is faster and cheaper at scale.

Give an example of a DAM webhook event.

Common DAM webhook events include asset.published, asset.updated, and asset.deleted. When one of these events fires, the DAM automatically sends an HTTP POST request to a registered URL—no manual trigger needed. This lets an external system, such as a CMS or a marketing platform, learn about the change immediately, rather than repeatedly polling the DAM to check whether anything changed since the last request.

What's the risk of a webhook receiver with no retry logic?

If the external server is temporarily unavailable at the exact moment the DAM sends a webhook, that event is lost permanently unless the DAM or the receiver implements retries with exponential backoff. Without such a mechanism, a single missed delivery can mean the corresponding change—an asset update or deletion—never reaches the downstream system, leaving it silently out of sync with the DAM until someone notices the discrepancy manually.

Why does signature verification matter for webhooks?

A webhook endpoint is just a public URL, so without cryptographic signature verification—typically HMAC computed with a shared secret—anyone who discovers that URL could send a forged POST request and impersonate a legitimate DAM event. Verifying the signature lets the receiving system confirm the request genuinely originated from the DAM rather than an attacker, protecting downstream automations like CMS updates or CDN cache purges from acting on fabricated data.

What role do webhooks play in DAM-driven publishing pipelines?

They let a DAM act as an active source of truth inside a real-time workflow, firing on an approval event to trigger downstream automation within seconds, rather than a passive store other systems have to remember to check.