Skip to main content

POST /api/keys/acl/revoke

Remove a principal's ACL entry entirely.

Removes the WHOLE entry identified by (aclId, systemId, principalId), then verifies by the entry being absent from a fresh read.

WARNING: rights is not accepted on this route and sending it is a 400. There is no partial revocation of individual bits: the entry is identified by its compare key and removed entire. A mask here would look like a partial revocation and would silently do the other thing. To reduce a principal to fewer rights, use POST /api/keys/acl/update with the mask you want it to end up with.

Authentication

Send the session id as Authorization: Bearer <session id>, and an RFC 9449 DPoP proof in the DPoP header if your session is bound to a key. The two are required together, not as alternatives — see Authenticating and Proving you hold your key.

This surface sets no cookie

There is no session cookie on any response and none is read on any request. Do not set credentials: "include" on a browser fetch.

Request

FieldTypeRequiredDescription
ttagstringyesCanonical base64.
systemIdintegeryes
principalIdinteger or stringyes
maxUsageintegerno
startTimestringnobase64 of exactly 8 bytes.
endTimestringnobase64 of exactly 8 bytes.

Example

{
"ttag": "...",
"systemId": 0,
"principalId": 0,
"maxUsage": 0,
"startTime": "...",
"endTime": "..."
}

Responses

200

The entry is gone, verified by its ABSENCE from a fresh read.

FieldTypeRequiredDescription
codestringnoAbsent on success; NOT_VERIFIED when the read-back disagrees.
operationstringnoWhich key-server operation was sent.
verifiedbooleanno
requestedRightsinteger or nullnoNull on revoke, which takes no rights.
requestedRightNamesarray or nullno
entryAclEntry or variantnoThe matching entry from the fresh read, or null. Null is the SUCCESS case on revoke.
aclAclInfono
detailstringno

entryAclEntry

FieldTypeRequiredDescription
principalIdstringnoDecimal string. Feeds straight back into the grant/update/revoke routes and into export.
systemIdintegerno
aclEntryIdstringnobase64 opaque handle
aclIdstringnobase64 opaque handle
rightsintegernoThe rights bitmask AS THE KEY SERVER HOLDS IT. The key server WIDENS what is asked for -- requesting WRITE reads back as WRITE|READ -- so test this with a mask AND, never with equality.
rightNamesarray of string (OWNER, READ, WRITE, MANDATORY_GROUP, HOST_MATRIX)no
maxUsageintegerno-1 means no limit.
userRightintegerno
startTimestringnobase64 of the raw 8-byte stamp
startTimeUnsetbooleannoTrue when the stamp is all zero -- the "no window" default, reported rather than converted into a date it does not mean.
endTimestringnobase64 of the raw 8-byte stamp
endTimeUnsetbooleanno

AclInfo

FieldTypeRequiredDescription
aclIdstringno
hiddenLinkobjectnoThe hidden link as the key server reports it on the ACL object. Its shape is the key server's and is passed through unchanged; do not depend on it. Use the ttag you sent.
expiredbooleanno
entryCountintegerno
entriesarray of AclEntrynoOne ACL entry -- one principal's rights over one key.

Example

{
"code": "...",
"operation": "...",
"verified": true,
"requestedRights": 0,
"requestedRightNames": [
"..."
],
"entry": {
"principalId": "...",
"systemId": 0,
"aclEntryId": "...",
"aclId": "...",
"rights": 0,
"rightNames": [
"OWNER"
],
"maxUsage": 0,
"userRight": 0,
"startTime": "...",
"startTimeUnset": true,
"endTime": "...",
"endTimeUnset": true
},
"acl": {
"aclId": "...",
"hiddenLink": {},
"expired": true,
"entryCount": 0,
"entries": [
{
"principalId": "...",
"systemId": 0,
"aclEntryId": "...",
"aclId": "...",
"rights": 0,
"rightNames": [
"..."
],
"maxUsage": 0,
"userRight": 0,
"startTime": "...",
"startTimeUnset": true,
"endTime": "...",
"endTimeUnset": true
}
]
},
"detail": "..."
}

400

BAD_REQUEST. Includes sending rights, which this route refuses by name -- see the warning above.

401

No live session, or a DPoP proof that did not verify.

SESSION_NOT_FOUND -- the credential names no session this Gateway holds. SESSION_EXPIRED -- it aged out. Both carry reauth: true; obtain a new credential rather than retrying.

PROOF_* -- the sender constraint refused. See the DPoP section of this document for the full table; PROOF_MALFORMED is a 400 and PROOF_REPLAY_CACHE_FULL a 503, and the rest are here.

SCOPED_CREDENTIAL_EXPIRED -- a scoped browser credential passed its fixed lifetime. Use does not extend it: an idle timeout would be refreshed by exactly the traffic a stolen handle produces.

403

OBJECT_NOT_IN_CREDENTIAL_SCOPE or ACCESS_DENIED.

404

ACL_NOT_FOUND -- and no removal was attempted.

409

NOT_VERIFIED -- the entry is still present in the read-back.

500

A fault rather than a refusal.

OP_FAILED is the catch-all: the key server refused in words that match no classified pattern, so the Gateway cannot say more than that the operation did not happen. Some key server refusals that are conceptually a caller error arrive here rather than as a 4xx, because the wire carries no distinguishing code -- where a route can recognise one from its message it maps it, and each such mapping is documented on the operation.

502

READBACK_FAILED.

503

A capacity ceiling or a missing deployment prerequisite. retryable says which.

A scope of session or process names the ceiling that was hit, and the response carries Retry-After.

Error handling

Every failure answers JSON carrying at least code and detail. Match on codedetail is written for a human debugging the call and its wording is not part of the contract. See the error model.

StatusMeaning
400BAD_REQUEST. Includes sending rights, which this route refuses by name -- see the warning above.
401No live session, or a DPoP proof that did not verify. SESSION_NOT_FOUND -- the credential names no session this Gateway holds. SESSION_EXPIRED -- it aged out. Both carry reauth: true; obtain a new credential rather than retrying. PROOF_* -- the sender constraint refused. See the DPoP section of this document for the full table; PROOF_MALFORMED is a 400 and PROOF_REPLAY_CACHE_FULL a 503, and the rest are here. SCOPED_CREDENTIAL_EXPIRED -- a scoped browser credential passed its fixed lifetime. Use does not extend it: an idle timeout would be refreshed by exactly the traffic a stolen handle produces.
403OBJECT_NOT_IN_CREDENTIAL_SCOPE or ACCESS_DENIED.
404ACL_NOT_FOUND -- and no removal was attempted.
409NOT_VERIFIED -- the entry is still present in the read-back.
500A fault rather than a refusal. OP_FAILED is the catch-all: the key server refused in words that match no classified pattern, so the Gateway cannot say more than that the operation did not happen. Some key server refusals that are conceptually a caller error arrive here rather than as a 4xx, because the wire carries no distinguishing code -- where a route can recognise one from its message it maps it, and each such mapping is documented on the operation.
502READBACK_FAILED.
503A capacity ceiling or a missing deployment prerequisite. retryable says which. A scope of session or process names the ceiling that was hit, and the response carries Retry-After.