Managed

Managed Issue View

get
https://api.linode.com/v4/managed/issues/{issueId}

Returns a single Issue that is impacting or did impact one of your Managed Services.

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

Path Parameters

issueId
Required
integer

The Issue to look up.

Request Samples

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

Response Samples

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

Responses

200: The requested issue.

created
string <date-time>

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.

id
integer

This Issue's unique ID.

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 of objects

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

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.