Update Config

Update a config

put
Authorizations
Path parameters
slugstringRequired
Body
namestringOptional
statusstringOptional
Responses
200

Config updated successfully

application/json
put
portkey = Portkey(
    api_key="PORTKEY_API_KEY",
)

# Update the configuration
updated_config = portkey.configs.update(
    slug="CONFIG_SLUG",
    name="Updated Config",
    config={
        "retry": {
            "attempts": 3
        },
        "cache": {
            "mode": "semantic"
        }
    }
)
print(updated_config)
200

Config updated successfully

{
  "success": true,
  "data": {
    "version_id": "abe447e2-f6aa-4229-93b7-8ee3183b6667"
  }
}

Last updated

Was this helpful?