GET
/
iam
/
activity_log
/
requests
/
{id}
Account Request Detail
curl --request GET \
  --url https://api.gcore.com/iam/activity_log/requests/{id} \
  --header 'Authorization: <api-key>'
{
  "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

Path Parameters

requestId
integer
required

Request ID.

Response

200
application/json

OK.

The response is of type object.