Skip to main content
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)