Managed

Managed Contacts List

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

Returns a paginated list of Managed Contacts on your Account.

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/contacts

Response Samples

{
  "data": [
    {
      "id": "",
      "updated": "2018-01-01T00:01:01",
      "email": "john.doe@example.org",
      "group": "on-call",
      "name": "John Doe",
      "phone": {
        "primary": "123-456-7890",
        "secondary": ""
      }
    }
  ],
  "page": 1,
  "pages": 1,
  "results": 1
}

Responses

200: A paginated list of ManagedContacts

data
array of objects
id
integer

This Contact's unique ID.

updated
string

When this Contact was last updated.

email
string

The address to email this Contact to alert them of issues.

group
Filterable
Nullable
string

A grouping for this Contact. This is for display purposes only.

name
string[a-zA-Z0-9-_ ]{2,64}

The name of this Contact.

phone
object

Information about how to reach this Contact by phone.

primary
Nullable
string

This Contact's primary phone number.

secondary
Nullable
string

This Contact's secondary phone number.

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.

Managed Contact Create

post
https://api.linode.com/v4/managed/contacts

Creates a Managed Contact. A Managed Contact is someone Linode special forces can contact in the course of attempting to resolve an issue with a Managed Service.

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

Request Body Schema

email
string <email>

The address to email this Contact to alert them of issues.

group
Filterable
Nullable
string [2 .. 50] characters

A grouping for this Contact. This is for display purposes only.

name
string [2 .. 64] characters [a-zA-Z0-9-_ ]{2,64}

The name of this Contact.

phone
object

Information about how to reach this Contact by phone.

primary
Nullable
string

This Contact's primary phone number.

secondary
Nullable
string

This Contact's secondary phone number.

Request Samples

curl -H "Content-Type: application/json" \
    -H "Authorization: Bearer $TOKEN" \
    -X POST -d '{
      "name": "John Doe",
      "email": "john.doe@example.org",
      "phone": {
        "primary": "123-456-7890",
        "secondary": null
      },
      "group": "on-call"
    }' \
    https://api.linode.com/v4/managed/contacts

Response Samples

{
  "updated": "2018-01-01T00:01:01",
  "id": 1234,
  "email": "john.doe@example.org",
  "group": "on-call",
  "name": "John Doe",
  "phone": {
    "primary": "123-456-7890",
    "secondary": ""
  }
}

Responses

200: Contact created.

updated
string <date-time>

When this Contact was last updated.

id
integer

This Contact's unique ID.

email
string <email>

The address to email this Contact to alert them of issues.

group
Filterable
Nullable
string [2 .. 50] characters

A grouping for this Contact. This is for display purposes only.

name
string [2 .. 64] characters [a-zA-Z0-9-_ ]{2,64}

The name of this Contact.

phone
object

Information about how to reach this Contact by phone.

primary
Nullable
string

This Contact's primary phone number.

secondary
Nullable
string

This Contact's secondary phone number.

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.