Revoke a record your organisation authenticated
/v1/records/{recordId}/revokeMarks a record your organisation authenticated as no longer in good standing, and anchors that decision to Hedera.
Revocation is permanent. It cannot be undone, by you or by us. The
record is not removed — a Hedera message cannot be withdrawn — and
verification continues to report it, with a revoked verdict and the
reason you gave.
The credential must carry records:revoke
This scope is granted only when you ask for it as you mint a credential. A credential that can authenticate documents cannot revoke them unless you requested both, and a credential minted without it never gains the scope — mint a new one.
Ask for it on the credentials you intend to revoke with, and not on the
ones your batch jobs carry. A credential holding this scope can revoke
any record your organisation authenticated, including records
created by a different credential. That is what makes it the right tool
after a credential is lost: mint a new credential with records:revoke
and clean up with it.
A credential granted records:revoke also carries records:write.
There is no revoke-only credential, so a key you mint to clean up after
an incident can also authenticate documents as your organisation —
protect it as a signing key, and revoke it when the cleanup is done.
A test-prefixed credential is never granted this scope.
What you can revoke
Records your organisation authenticated through this API. Documents a person authenticated in the Audrie app are not revocable here — only that signer can revoke those, from the app.
Revoking is not a way to correct a mistake in the document itself. A
corrected document is a new document with a new hash: authenticate the
new one, and revoke the old one as SUPERSEDED.
Errors
A 403 has two causes, and they read differently. A credential without
records:revoke is told so, and the message names the scope. Otherwise
the record is not one your organisation can revoke — and that answer
deliberately does not distinguish a record belonging to another
organisation from one a person authenticated in the Audrie app.
A 409 has two causes and does not distinguish them. Do not retry
blindly: if the record is already revoked, retrying never succeeds,
because revocation is permanent. If its anchor has not yet reached
consensus, retry once POST /v1/verifications reports verified_org.
That call is also how you tell the two apart — an already-revoked record
reports revoked.
Authorization
apiKey Authorization: Bearer aud_live_…
Optional on POST /v1/verifications, which answers without any
credential. Required to list or read verifications back.
Send exactly one Authorization header. A credential that is present and
does not work is refused rather than downgraded to the anonymous tier.
Issue a key in the portal under Settings → Organisation → API credentials; it is shown once, at creation.
Two scopes exist. verifications:read covers every verification
operation and is on every key. records:write covers
POST /v1/records and is granted only on a live credential whose
organisation holds the organisation-issued authentication add-on at the
moment the key is minted — a test key never receives it, because
there is no sandbox ledger and the records it would create would be
permanent — scopes are fixed then and never widen afterwards, because a
credential's recorded scopes are what an auditor reads to know what that
key could do on a given date. Buying the add-on later means minting a new
key; the old one keeps verifying.
Scopes, rotation, revocation, the live and test prefixes and what to
do about a leaked key:
https://audrie.io/docs/authentication
In: header
Path Parameters
The recordId returned when the document was authenticated. UUID.
uuidRequest Body
application/json
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/records/497f6eca-6276-4993-bfeb-53cbbbba6f08/revoke" \ -H "Content-Type: application/json" \ -d '{ "reason": "SUPERSEDED" }'{ "recordId": "9a1b7c3d-4e5f-4a6b-8c9d-0e1f2a3b4c5d"}