tasks API.
Each delivery includes the Filed workspace ID, client ID, and task ID. Use all
three identifiers when matching an event to your own records. Filed uses Svix
for signing, retries, delivery history, and replay.
Supported events
Event names are derived directly from the task status:
These events apply only to Binder (
BINDER), Tax Prep (TAX_PREP), Tax Review
(TAX_REVIEW), Tax Advisor (TAX_ADVISOR), and Tax Prep Lite
(TAX_PREP_LITE).
You can retrieve this information programmatically with
webhookEventCatalog.
1. Configure an endpoint
Open Settings > Webhooks in the Filed workspace. You must be a workspace administrator. Add your HTTPS receiver URL, select the events you need, and copy the endpoint signing secret. You can also manage endpoints through thecreateWebhookEndpoint and related
GraphQL mutations.
2. Receive the payload
Every event uses the same version 1 envelope:String!
A deterministic UUID for this task status event. Use the
webhook-id header
for delivery deduplication.String!
The event name:
task.running, task.completed, or task.failed.String!
The payload schema version. The current value is
1.String!
The ISO 8601 time when the task entered the status.
ID!
The Filed workspace that owns the task and endpoint.
ID!
The Filed client associated with the task.
ID!
The Filed task whose status changed.
String!
One of
BINDER, TAX_PREP, TAX_REVIEW, TAX_ADVISOR, or
TAX_PREP_LITE.String!
One of
RUNNING, COMPLETED, or FAILED. The status always matches the event
suffix.String
The failure detail for
task.failed. It is null for running and completed
events.3. Verify the signature
Verify the raw request body before parsing JSON or changing application state. Svix signs each request with thewebhook-id, webhook-timestamp, and
webhook-signature headers.
4. Handle duplicates and retries
Webhook delivery is at least once. Store thewebhook-id header in a table with
a uniqueness constraint before applying the event. If you have already handled
that ID, return a successful response without applying it again.
Return a 2xx response promptly after durable acceptance. Move slow work to a
queue. Svix retries failed deliveries and lets workspace administrators inspect
or replay attempts from Settings > Webhooks.
5. Rotate a signing secret
Rotate a secret from Settings > Webhooks or withrotateWebhookEndpointSecret. The API
defaults to a 24-hour grace period during which both the old and new secrets are
valid.
Deploy the new secret to your receiver before the grace period ends. Remove the
old secret after you confirm deliveries are being verified with the new one.