Account

Login View

get
https://api.linode.com/v4/account/logins/{loginId}

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.

Path Parameters

loginId
Required
integer

The ID of the login object to access.

Request Samples

curl -H "Authorization: Bearer $TOKEN" \
    https://api.linode.com/v4/account/logins/1234

Response Samples

{
  "status": "successful",
  "id": 1234,
  "username": "example_user",
  "datetime": "2018-01-01T00:01:01",
  "ip": "192.0.2.0",
  "restricted": true
}

Responses

200: The requested login object.

status
string
Enum: "successful""failed"

Whether the login attempt succeeded or failed.

id
integer

The unique ID of this login object.

username
string

The username of the User that attempted the login.

datetime
string <date-time>

When the login was initiated.

ip
string <ip>

The remote IP address that requested the login.

restricted
boolean

True if the User that attempted the login was a restricted User, false otherwise.

default: Error

errors
array of objects
reason
string

What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.

field
string

The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.