Export revocation index entries
GET
/v1/federation/revocation-export
const url = 'http://localhost:8693/v1/federation/revocation-export';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8693/v1/federation/revocation-exportReturns all revocation entries for peer reconciliation when hashes don’t match.
Responses
Section titled “ Responses ”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" }]