> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unprice.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Replay ingestion events

> Replay failed ingestion events by canonical audit id.

```ts theme={null}
const { result, error } = await unprice.ingestionEvents.replay({
  project_id: "proj_123",
  canonical_audit_ids: ["audit_123"],
})

if (error) {
  throw new Error(error.message)
}

console.log(result)
```
