Skip to main content
PATCH
/
api
/
v4
/
ppm
/
admin
/
config
/
{configId}
Update Admin Config
curl --request PATCH \
  --url https://api.example.com/api/v4/ppm/admin/config/{configId} \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "baseUrl": "<string>",
  "name": "<string>",
  "repos": [
    "<string>"
  ],
  "token": "<string>"
}
'
{
  "error": "<string>"
}

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

configId
string
required

The unique ID of the configuration to update

Body

application/json

Partial PPM admin configuration (only include fields to update)

Partial PPM admin configuration (all fields optional)

baseUrl
string

PPM instance base URL

name
string

Optional human-readable name for the PPM server

repos
string[]

Enabled repository types

token
string

Authentication token for PPM

Response

Success