Skip to content

Export revocation index entries

GET
/v1/federation/revocation-export
curl --request GET \
--url http://localhost:8693/v1/federation/revocation-export

Returns all revocation entries for peer reconciliation when hashes don’t match.

Revocation entries

Media type application/json
Array<object>
object
subject_id
string
reason
string
revoked_at
string format: date-time
Example generated
[
{
"subject_id": "example",
"reason": "example",
"revoked_at": "2026-04-15T12:00:00Z"
}
]