action linode_get_managed_issue { label: "Managed Issue View" description: "Returns a single Issue that is impacting or did impact one of your\nManaged Services.\n\nThis command can only be accessed by the unrestricted users of an account.\n" provider: linode method: GET path: "/managed/issues/{issueId}" encoding: json output: { type: "object" description: "An Issue that was detected with a service Linode is managing.\n" properties: { created: { type: "string" format: "date-time" description: "When this Issue was created. Issues are created in response to issues detected with Managed Services, so this is also when the Issue was detected.\n" } entity: { type: "object" description: "The ticket this Managed Issue opened.\n" properties: { id: { type: "integer" description: "This ticket's ID\n" } label: { type: "string" description: "The summary for this Ticket.\n" } type: { type: "string" description: "The type of entity this is. In this case, it is always a Ticket.\n" enum: ["ticket"] } url: { type: "string" format: "url" description: "The relative URL where you can access this Ticket.\n" } } } id: { type: "integer" description: "This Issue's unique ID.\n" } services: { type: "array" description: "An array of Managed Service IDs that were affected by this Issue.\n" items: { type: "integer" } } } } }