action linode_get_longview_plan { label: "Longview Plan View" description: "Get the details of your current Longview plan. This returns a `LongviewSubscription` object for your current Longview Pro plan, or an empty set `{}` if your current plan is Longview Free.\n\nYou must have at least one of the following `global` [User Grants](/docs/api/account/#users-grants-view) in order to access this endpoint:\n\n - `\"account_access\": read_write`\n - `\"account_access\": read_only`\n - `\"longview_subscription\": true`\n - `\"add_longview\": true`\n\n\nTo update your subscription plan, send a request to [Update Longview Plan](/docs/api/longview/#longview-plan-update).\n" provider: linode method: GET path: "/longview/plan" encoding: json output: { type: "object" description: "A Longview Subscription represents a tier of Longview service you can subscribe to.\n" properties: { clients_included: { type: "integer" description: "The number of Longview Clients that may be created with this Subscription tier.\n" } id: { type: "string" description: "The unique ID of this Subscription tier.\n" enum: ["longview-3", "longview-10", "longview-40", "longview-100"] } label: { type: "string" description: "A display name for this Subscription tier.\n" } price: { type: "object" description: "Pricing information about this Subscription tier.\n" properties: { hourly: { type: "number" description: "The hourly price, in US dollars, for this Subscription tier.\n" } monthly: { type: "number" description: "The maximum monthly price in US Dollars for this Subscription tier. You will never be charged more than this amount per month for this subscription.\n" } } } } } }