Returns all VerificationRecord objects associated with the specified receipt, ordered by submission time.
Path Parameters
The UUID of the execution receipt whose verifications you want to list.
Response
Returns { "items": [VerificationRecord] }.
Array of VerificationRecord objects for this receipt.
The UUID of the receipt this verification applies to.
Identifier of the verifier that submitted this verdict.
The recorded verdict. One of not_required, pending, verified, or failed.
Whether this verdict was produced by an automated verifier.
Explanation provided by the verifier, if any.
verified_at
string (ISO 8601)
required
UTC timestamp when this verification record was created.
Errors
| Status | Description |
|---|
404 | No receipt with the given receipt_id exists. |
Example
curl http://your-node:8042/v1/receipts/018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890/verifications
Example response
{
"items": [
{
"receipt_id": "018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890",
"verifier_id": "auto-verifier",
"verdict": "verified",
"automated": true,
"verified_at": "2025-01-15T10:31:00Z"
},
{
"receipt_id": "018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890",
"verifier_id": "auditor-1",
"verdict": "verified",
"automated": false,
"reason": "Output matches expected payment link format.",
"verified_at": "2025-01-15T11:00:00Z"
}
]
}