Skip to main content
PATCH
/
services
/
{serviceId}
/
secrets
Patch service secrets
curl --request PATCH \
  --url http://localhost:9371/services/{serviceId}/secrets \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "op": "add",
    "path": "<string>",
    "value": "<unknown>"
  }
]
'
{
  "updated": true
}

Path Parameters

serviceId
string
required

Service identifier matching the installed manifest id.

Minimum string length: 1

Body

application/json
op
enum<string>
required

Insert a value at the target path.

Available options:
add
path
string
required

JSON Pointer path to update.

Minimum string length: 1
value
any | null

Value to insert or replace.

Response

Confirmation that the secrets payload was updated.

Response returned after patching service secrets.

updated
boolean
required

Acknowledges that the secrets patch was accepted and persisted.

Last modified on July 1, 2026