action linode_get_account_logins { label: "User Logins List All" description: "Returns a collection of successful logins for all users on the account during the last 90 days. This command can only be accessed by the unrestricted users of an account.\n" provider: linode method: GET path: "/account/logins" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "An object representing a previous successful login for a User.\n" properties: { datetime: { type: "string" format: "date-time" description: "When the login was initiated.\n" } id: { type: "integer" description: "The unique ID of this login object.\n" } ip: { type: "string" format: "ip" description: "The remote IP address that requested the login.\n" } restricted: { type: "boolean" description: "True if the User that was logged into was a restricted User, false otherwise.\n" } username: { type: "string" description: "The username of the User that was logged into.\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." } } } }