POST /api/trusted-cas/remove
Remove a CA from the trusted list.
Removes the CA named by certificateId, and verifies by ABSENCE from a fresh list read.
certificateId is the value GET /api/trusted-cas returns -- canonical base64 of an
8-byte id. NOT the lower-case hex a thick client renders, and not a number.
WARNING: removing a CA does not un-enrol anything. Leaves already enrolled keep their certificate object and their transport principal; this removes ONE record of the two. To retire an identity, disable or remove its principal.
WARNING: on this route the listener-lag caveat is the security-relevant direction.
gone: true means the key server no longer LISTS this CA. It does not mean leaves
signed by it can no longer connect: until the key server is restarted, they still can.
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.
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
| Field | Type | Required | Description |
|---|---|---|---|
certificateId | string | yes | Canonical base64 of an 8-byte id |
Example
{
"certificateId": "..."
}
Responses
200
The CA is no longer listed, verified by a fresh read.
| Field | Type | Required | Description |
|---|---|---|---|
gone | true (constant) | yes | |
certificateId | string | yes | |
listCountBefore | integer | yes | |
listCountAfter | integer | yes | |
echoedObjects | integer or null | no | |
trustedCA | object | yes | The row as it stood BEFORE the removal, so the answer names what went. |
detail | string | no |
trustedCA object
| Field | Type | Required | Description |
|---|---|---|---|
certificateId | string or null | no | Canonical base64 of an 8-byte id. This is the spelling the trust routes take. It is NOT the lower-case hex a thick client renders for the same field; the two do not interoperate byte-for-byte. |
className | string or null | no | |
subject | string or null | no | The FULL stored DN, slash-prefixed and slash-separated, e.g. /CN=teFileX509/O=ERUCES. |
issuer | string or null | no | |
publicKeyType | string or null | no | |
serialNumber | string or null | no | base64 |
certHash | string or null | no | base64 |
effectiveDate | string or null | no | |
expirationDate | string or null | no | |
status | integer or null | no | The certificate-object status WORD, not an ok/error flag. See statusLabel. |
statusLabel | string or null | no | One of: CA, Regular, Saved request, Saved PKCS#7. |
certificate | string or null | no | The DER body, base64. Present only when includeBodies was true. |
request | string or null | no | The stored CSR, base64. Present only when includeBodies was true. |
Example
{
"gone": true,
"certificateId": "...",
"listCountBefore": 0,
"listCountAfter": 0,
"echoedObjects": 0,
"trustedCA": {
"certificateId": "...",
"className": "...",
"subject": "...",
"issuer": "...",
"publicKeyType": "...",
"serialNumber": "...",
"certHash": "...",
"effectiveDate": "...",
"expirationDate": "...",
"status": 0,
"statusLabel": "...",
"certificate": "...",
"request": "..."
},
"detail": "..."
}
400
The request was refused before anything was sent to the key server.
Most 400s on this surface carry code: BAD_REQUEST and a detail naming the field and
saying what the key server would otherwise have done with it. A large share of them exist
because the value would have been ACCEPTED downstream and quietly meant something else --
an empty string that reaches the wire as "mint a new key", a zero-length identifier that
names no object, a numeric flag word that clears bits the caller did not name.
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
Authenticated, and refused. The codes differ in what they say about where the refusal
came from: ACCESS_DENIED and PRINCIPAL_DISABLED are the key server's, while
NOT_WRITABLE, BUILT_IN_PRINCIPAL, OWN_ACCOUNT and
OBJECT_NOT_IN_CREDENTIAL_SCOPE are decided by the Gateway before anything is sent.
404
NOT_TRUSTED -- no CA with that id is in the list. Established by READING the list, not inferred from a failed removal; nothing was sent to the key server. This is a DIFFERENT FACT from the 409.
409
NOT_REMOVED -- the CA WAS in the list, the removal resolved, and a fresh read still contains it. gone comes from that second read and from nothing else.
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.
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 code — detail is written for a human debugging the call and its wording is not part of the contract. See the error model.
| Status | Meaning |
|---|---|
400 | The request was refused before anything was sent to the key server. Most 400s on this surface carry code: BAD_REQUEST and a detail naming the field and saying what the key server would otherwise have done with it. A large share of them exist because the value would have been ACCEPTED downstream and quietly meant something else -- an empty string that reaches the wire as "mint a new key", a zero-length identifier that names no object, a numeric flag word that clears bits the caller did not name. |
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 | Authenticated, and refused. The codes differ in what they say about where the refusal came from: ACCESS_DENIED and PRINCIPAL_DISABLED are the key server's, while NOT_WRITABLE, BUILT_IN_PRINCIPAL, OWN_ACCOUNT and OBJECT_NOT_IN_CREDENTIAL_SCOPE are decided by the Gateway before anything is sent. |
404 | NOT_TRUSTED -- no CA with that id is in the list. Established by READING the list, not inferred from a failed removal; nothing was sent to the key server. This is a DIFFERENT FACT from the 409. |
409 | NOT_REMOVED -- the CA WAS in the list, the removal resolved, and a fresh read still contains it. gone comes from that second read and from nothing else. |
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. |
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. |