Get decision payload
Retrieve the request payload as it stood when the decision was evaluated, redacted per
classification marker at write time: any fields keep their value, pii fields keep
their path with a [REDACTED] sentinel, pci-pan values are stored as the credential
fingerprint, pci-sad is never stored. The store therefore holds no raw PAN or SAD and
is available below SAQ_D.
Storage is opt-in per scope and off by default. Your instance configures a retention
window per scope (any, pii, pci-pan); the pii and pci-pan windows cannot exceed
the instance’s general retention window for that scope. Nothing stored is a normal
state: the response is 200 with retained: false. 404 means the decision id is
unknown. Storage is asynchronous, so a read immediately after the decision may briefly
report retained: false.
Authorizations
HS256-signed JWT bearer token, obtained via the OAuth2 client-credentials grant (see Authentication).
Path Parameters
Decision ID
Response
Stored payload, or an explicit not-retained result
The decision's request payload as stored, with per-scope redactions applied at write time. Retention is opt-in per scope and defaults to zero, so retained is false for most decisions.
False when no payload was kept for this decision — the normal state under the default-zero retention. A false result is a successful response, not an error; an unknown decision id returns 404 instead.
The stored payload, redacted per field scope marker. Null exactly when retained is false. Fields whose scope was not opted into retention are absent entirely, as are pci-sad fields, which are never stored at any retention setting. any fields keep their value; pii fields keep the path with the [REDACTED] sentinel; a pci-pan value is stored as the platform credential fingerprint (crd_…), the same value the decision's credential_fingerprint carries.
The scope markers whose values were retained for this decision, as configured at the time it was evaluated. Empty when retained is false. Enabling retention later does not backfill an earlier decision.
any, pii, pci-pan When the stored payload is swept. Bounded by the retention ceiling of the narrowest retained scope — an evidence window can never outlive the retention promise made for its own scope. Null when retained is false.