action linode_get_account_login { label: "Login View" description: "Returns a Login object that displays information about a successful login. The logins that can be viewed can be for any user on the account, and are not limited to only the logins of the user that is accessing this API endpoint. This command can only be accessed by the unrestricted users of the account.\n" provider: linode method: GET path: "/account/logins/{loginId}" encoding: json output: { 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" } } } }