Skip to main content

POST /api/config/update

Write attributes into the key server configuration, and verify by re-reading.

Applies a batch of attribute writes and verifies each one against a FRESH read taken afterwards.

This route does NOT take the key server's own wire shape. The underlying operation takes a whole serialized XML ELEMENT per path; this surface builds that element itself, from {xpath, attr, value} triples, so that a caller cannot attach an attribute that changes which node a path resolves to, set the access flag, or rewrite attributes it did not name.

value must be a STRING. A JSON number or boolean would be stringified by some other layer and the stored form would not be the one you sent.

attr: "accessFlag" is refused at the door. It is the one genuine silent no-op left on this operation: the key server SKIPS that attribute inside its apply loop while the batch still returns success, so a caller sending it would be told the write landed when nothing happened.

An unresolvable xpath refuses the WHOLE batch before the wire, as a 400 naming every offender. The key server would refuse it too -- one bad entry rejects the entire batch -- but as a 500 naming only the first.

WARNING: the batch is ALL-OR-NOTHING at the key server, and a non-writable node rejects it before anything is applied. That refusal arrives as a 500 carrying the key server's own message, which names the node.

WARNING: observed is reported ONLY for an allow-listed (element, attribute) pair. For anything else applied is computed over the stored value but the value itself does not leave this process -- a route that echoed back what it just stored would be a credential oracle.

WARNING: an idempotent write cannot be distinguished from one that never happened. If the submitted value already equalled the stored one, the comparison matches either way.

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
writesarray of objectyes

writes[] object

FieldTypeRequiredDescription
xpathstringyesMust name an ELEMENT. The literal root is refused -- an attribute write needs an element.
attrstringyesaccessFlag is refused.
valuestringyesMust be a string.

Example

{
"writes": [
{
"xpath": "...",
"attr": "...",
"value": "..."
}
]
}

Responses

200

Every requested write is present in a fresh read taken after the update.

FieldTypeRequiredDescription
codestringnoAbsent on success; NOT_VERIFIED otherwise.
verifiedbooleanno
batchSizeintegerno
outcomesarray of objectno
detailstringno

outcomes[] object

FieldTypeRequiredDescription
xpathstringno
attrstringno
appliedbooleanno
observedstringnoPresent ONLY for an allow-listed (element, attribute) pair. For anything else applied is computed and the value itself does not leave the process.
reasonstringnoPresent when applied is false.

Example

{
"code": "...",
"verified": true,
"batchSize": 0,
"outcomes": [
{
"xpath": "...",
"attr": "...",
"applied": true,
"observed": "...",
"reason": "..."
}
],
"detail": "..."
}

400

BAD_REQUEST -- writes absent, not an array or empty; an entry malformed; attr is accessFlag; value not a string; or one or more xpaths do not resolve, in which case the whole batch was refused BEFORE the wire and the detail names every offender.

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.

409

NOT_VERIFIED -- the key server did not refuse the batch, and the read-back does not show every requested value stored.

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 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 -- writes absent, not an array or empty; an entry malformed; attr is accessFlag; value not a string; or one or more xpaths do not resolve, in which case the whole batch was refused BEFORE the wire and the detail names every offender.
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.
403Authenticated, 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.
409NOT_VERIFIED -- the key server did not refuse the batch, and the read-back does not show every requested value stored.
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.
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.