PgBeam Docs
Agents

VerifyAuditChain

Verify the tamper-evident audit chain

Recomputes the project's audit hash chain over an optional time range and reports whether it is intact. Each audit entry is linked to its predecessor with a SHA-256 hash, so editing or deleting any row breaks the chain. On a break, the response reports the first sequence number where a tampered or deleted entry was detected. Requires the same audit:read permission as the list and export endpoints.

Usage

result, err := client.Agents.VerifyAuditChain(ctx, "prj_xxx", nil)

Parameters

ParameterTypeRequiredDescription
ctxcontext.ContextYesRequest context
projectIDstringYesUnique project identifier (prefixed, e.g. prj_xxx).
params*pgbeam.VerifyAuditChainParamsNoQuery parameters
params.StartstringNoReturn entries at or after this timestamp (inclusive lower bound).
params.EndstringNoReturn entries strictly older than this timestamp (cursor / upper bound).

Response

(*pgbeam.AuditChainVerification, error): chain verification result.

Example

import pgbeam "go.pgbeam.com/sdk"

client := pgbeam.NewClient(&pgbeam.ClientOptions{
  APIKey: "pgb_your_api_key",
})

result, err := client.Agents.VerifyAuditChain(ctx, "prj_xxx", &pgbeam.VerifyAuditChainParams{
    Start: "...",
    End: "...",
  })
if err != nil {
  log.Fatal(err)
}
fmt.Println(result)

Errors

StatusDescription
400Invalid request parameters.
401Missing or invalid authentication.
403Operation not allowed by current plan limits.
404Resource not found.
429Rate limited. Try again later.

On this page