Managed

Managed Issues List

get
https://api.linode.com/v4/managed/issues

Returns a paginated list of recent and ongoing issues detected on your Managed Services.

This command can only be accessed by the unrestricted users of an account.

Query Parameters

page
integer > = 1
Default: 1

The page of a collection to return.

page_size
integer [25 .. 500]
Default: 100

The number of items to return per page.

Request Samples

curl -H "Authorization: Bearer $TOKEN" \
    https://api.linode.com/v4/managed/issues

Response Samples

{
  "data": [
    {
      "id": "",
      "created": "2018-01-01T00:01:01",
      "entity": {
        "id": 98765,
        "label": "Managed Issue opened!",
        "type": "ticket",
        "url": "/support/tickets/98765"
      },
      "services": []
    }
  ],
  "page": 1,
  "pages": 1,
  "results": 1
}

Responses

200: A paginated list of open or ongoing Managed Issues.

data
array of objects
id
integer

This Issue's unique ID.

created
string

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.

entity
object

The ticket this Managed Issue opened.

id
integer

This ticket's ID

label
string

The summary for this Ticket.

type
string
Enum: "ticket"

The type of entity this is. In this case, it is always a Ticket.

url
string

The relative URL where you can access this Ticket.

services
array

An array of Managed Service IDs that were affected by this Issue.

page
integer

The current page.

pages
integer

The total number of pages.

results
integer

The total number of results.

default: Error

errors
array of objects
reason
string

What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.

field
string

The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.