action rudder_get_setting { label: "Get the value of a setting" description: "Get the current value of a specific setting" provider: rudder method: GET path: "/settings/{settingId}" encoding: json output: { type: "object" required: ["action", "data", "id", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getSetting"] } data: { type: "object" description: "Information about the setting" required: ["settings"] properties: { settingId: { type: "string" description: "Id and value of the property" } } } id: { type: "string" description: "Id of the setting" } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }