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

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

The updated configuration payload.

Wrapper for a service configuration document.

config
object
required

Current configuration payload stored for the service.

Last modified on July 1, 2026