action rudder_get_status { label: "Get server status" description: "Get information about current server status" provider: rudder method: GET path: "/system/status" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getStatus"] } data: { type: "object" description: "Status of the service" properties: { global: { type: "string" enum: ["OK"] } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }