> For the complete documentation index, see [llms.txt](https://docs.tryterra.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tryterra.co/faq/help-topics/webhook/delivery-timing-volume-and-ordering/backfill-volume-spikes.md).

# Why did my webhook volume suddenly spike?

Large webhook bursts are **expected recovery traffic**, not invalid requests. They typically follow an interruption: when delivery to your endpoint is down, Terra keeps retrying, and the data accumulated for that period is sent in bulk once your service resumes. This can recur after any future interruption.

**Put a queue or buffer in front of your webhook consumer** so bursts do not overload your database writes.

{% hint style="info" %}
If a `user_id` looks malformed in the dashboard, that is a display-only issue. The actual payload always carries the real identifier, and `user_id` is documented as an arbitrary string, not strictly a UUID.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tryterra.co/faq/help-topics/webhook/delivery-timing-volume-and-ordering/backfill-volume-spikes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
