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

Path Parameters

moduleId
string
required

Module identifier.

Minimum string length: 1

Body

application/json

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

url
string
required

Direct URL of the new .tar.zst module archive to replace the existing installation.

Minimum string length: 1

Response

Update result for the requested module.

Response returned by the module update endpoint.

updated
boolean
required

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

Last modified on July 1, 2026