Skip to main content
POST
http://localhost:8001
/
revocation
/
bloom
/
rebuild
curl -X POST http://localhost:8001/revocation/bloom/rebuild
{
  "rebuilt": true,
  "jti_count": 1234
}
This is an administrative operation. The bloom filter rebuild scans all revoked JTIs from the database and re-adds them to Redis. This may take several seconds for large revocation logs.

Response

rebuilt
boolean
Whether the bloom filter was successfully rebuilt.
jti_count
integer
Number of JTIs added to the rebuilt bloom filter.
curl -X POST http://localhost:8001/revocation/bloom/rebuild
{
  "rebuilt": true,
  "jti_count": 1234
}