action rudder_list_parameters { label: "List all global parameters" description: "Get the current value of all the global parameters" provider: rudder method: GET path: "/parameters" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["listParameters"] } data: { type: "object" description: "Parameters" required: ["parameters"] properties: { parameters: { type: "array" items: { type: "object" required: ["id"] properties: { description: { type: "string" description: "Description of the parameter" } id: { type: "string" description: "Name of the parameter" } overridable: { type: "boolean" description: "Is the global parameter overridable by node" } value: { format: "string or JSON" description: "Value of the parameter" type: "object" } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }