action elmah_logs_get_all { label: "Fetch a list of logs." description: "Required permission: `logs_read`" provider: elmah method: GET path: "/v3/logs" encoding: json output: { type: "array" items: { type: "object" properties: { color: { type: "string" description: "Color of the log. The color will always be one of the following (green being the default): \ngreen, lightgreen, lime, yellow, orange, deeporange, red, pink, purple, deeppurple, blue, lightblue" } disabled: { type: "boolean" description: "Returns true if the log is currently disabled. A log can be disabled either through the API \nor in the elmah.io UI." } environmentName: { type: "string" description: "Environment name this log is in or \"Other\" if not in an environment. \n\"Other\" is chosen over null to mimic the experience in the elmah.io UI." } id: { type: "string" description: "ID of the log." } name: { type: "string" description: "Name of the log." } } } } }