action linode_get_managed_contacts { label: "Managed Contacts List" description: "Returns a paginated list of Managed Contacts on your Account.\n\nThis command can only be accessed by the unrestricted users of an account.\n" provider: linode method: GET path: "/managed/contacts" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "Information about someone Linode's special forces may contact in case an issue is detected with a manager service.\n" properties: { email: { type: "string" format: "email" description: "The address to email this Contact to alert them of issues.\n" } group: { type: "string" description: "A grouping for this Contact. This is for display purposes only.\n" } id: { type: "integer" description: "This Contact's unique ID.\n" } name: { type: "string" description: "The name of this Contact.\n" } phone: { type: "object" description: "Information about how to reach this Contact by phone.\n" properties: { primary: { type: "string" format: "phone" description: "This Contact's primary phone number.\n" } secondary: { type: "string" format: "phone" description: "This Contact's secondary phone number.\n" } } } updated: { type: "string" format: "date-time" description: "When this Contact was last updated.\n" } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }