Profile

Logins List

get
https://api.linode.com/v4/profile/logins

Returns a collection of successful account logins from this user during the last 90 days.

Request Samples

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

Response Samples

{
  "data": [
    {
      "id": "",
      "status": "successful",
      "username": "example_user",
      "datetime": "2018-01-01T00:01:01",
      "ip": "192.0.2.0",
      "restricted": true
    }
  ],
  "page": 1,
  "pages": 1,
  "results": 1
}

Responses

200: An array of successful account logins from this user during the last 90 days.

data
array of objects
id
integer

The unique ID of this login object.

status
string
Enum: "successful""failed"

Whether the login attempt succeeded or failed.

username
string

The username of the User that attempted the login.

datetime
string

When the login was initiated.

ip
string

The remote IP address that requested the login.

restricted
boolean

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

page
integer

The current page.

pages
integer

The total number of pages.

results
integer

The total number of results.

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.