action elmah_logs_disable { label: "Disable a log by its ID." description: "Required permission: `logs_write`" provider: elmah method: POST path: "/v3/logs/{id}/_disable" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }