action apicurio_update_config_property { label: "Update a configuration property" description: "Updates the value of a single configuration property.\n\nThis operation may fail for one of the following reasons:\n\n* Property not found or not configured (HTTP error `404`)\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: PUT path: "/admin/config/properties/{propertyName}" encoding: json input: { type: "object" required: ["value"] properties: { value: { type: "string" } } } output: { type: "object" additionalProperties: true } }