GET
/
v1
/
account
/
security
/
events
Authorization
const { setToken, Account } = require('@evecloud/sdk');

setToken('TOKEN');

Account.security.events.list().then((events) => {
    console.log(events.data);
}).catch((error) => {
    console.log(error);
});
{
  "data": [
    {
      "connection": "Email",
      "date": "2023-07-15T20:17:15.735Z",
      "description": "Success Login",
      "id": "90020230715201720914311000000000000001223372038783157625",
      "ip": "10.1.1.8",
      "location": {},
      "user_agent": "Chrome 114.0.0 / Windows 10.0.0"
    }
  ],
  "meta": {
    "limit": 10,
    "page": 1,
    "total": 1
  }
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
data
object[]
meta
object