Skip to content

[New] POST /account/settings/managed-enable #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1557,6 +1557,42 @@ paths:
linode-cli account settings-update \
--longview_subscription longview-30 \
--network_helper false
/account/settings/managed-enable:
x-linode-cli-command: account
post:
x-linode-grant: read_write
tags:
- Account
summary: Enable Linode Managed
description: >
Enables Linode Managed for the entire account and sends a welcome email to the account's associated
email address. Linode Managed can monitor any service or software stack reachable over TCP or HTTP. See
our [Linode Managed guide](https://linode.com/docs/platform/linode-managed/)
to learn more.
operationId: enableAccountManged
x-linode-cli-action: enable-managed
security:
- personalAccessToken: []
- oauth:
- account:read_write
responses:
'200':
description: Managed services enabled for account.
content:
application/json:
schema:
type: object
default:
$ref: '#/components/responses/ErrorResponse'
x-code-samples:
- lang: Shell
source: >
curl -H "Authorization: Bearer $TOKEN" \
-X POST \
https://api.linode.com/v4/account/settings/managed-enable
- lang: CLI
source: >
linode-cli account enable-managed
/account/transfer:
x-linode-cli-command: account
get:
Expand Down