GET
/
iam
/
activity_log
/
requests
Account Requests
curl --request GET \
  --url https://api.gcore.com/iam/activity_log/requests \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "/activity_log/requests?offset=20&limit=10",
  "previous": "/activity_log/requests?offset=10&limit=10",
  "result": [
    {
      "id": 123456,
      "actions": "2024-11-13 15:23:30+00:00",
      "data": "string",
      "user_email": "some@email.com",
      "client": 123456,
      "token": 123456,
      "requested_at": "2024-11-13 15:23:30+00:00",
      "path": "/users",
      "remote_ip_address": "192.168.1.1",
      "host": "example.com",
      "method": "GET",
      "query_params": "offset=20&limit=10",
      "status_code": 200,
      "reverted": true,
      "user": 123456
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

limit
integer

The maximum number of items.

offset
integer

Offset relative to the beginning of list.

Response

200
application/json

OK.

The response is of type object.