Skip to main content
PATCH
/
services
/
{serviceId}
Replace a service via direct URL
curl --request PATCH \
  --url http://localhost:9371/services/{serviceId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "updated": true
}

Path Parameters

serviceId
string
required

Service identifier matching the installed manifest id.

Minimum string length: 1

Body

application/json

Request body used to replace a service via a direct download URL.

url
string
required

Direct URL of the new definition file to replace the existing installation.

Minimum string length: 1

Response

Update result for the requested service.

Response returned by the service patch endpoint.

updated
boolean
required

Whether the service was updated (false if no change detected).

Last modified on July 1, 2026