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
}
]
}
Information about the account’s 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
}
]
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
The maximum number of items.
Offset relative to the beginning of list.
OK.
The response is of type object
.
Was this page helpful?