action apicurio_get_config_property { label: "Get configuration property value" description: "Returns 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: GET path: "/admin/config/properties/{propertyName}" encoding: json output: { type: "object" required: ["description", "label", "name", "type", "value"] properties: { description: { type: "string" } label: { type: "string" } name: { type: "string" } type: { type: "string" } value: { type: "string" } } } }