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

OK.

id
integer

ID.

Example:

123456

actions
string

Actions type

Example:

"2024-11-13 15:23:30+00:00"

data
string

Request body

Example:

"string"

user_email
string

User Email

Example:

"some@email.com"

client
integer

Account ID.

Example:

123456

token
integer

Token ID.

Example:

123456

requested_at
string

DateTime of request

Example:

"2024-11-13 15:23:30+00:00"

path
string

Request path

Example:

"/users"

remote_ip_address
string

IP Address

Example:

"192.168.1.1"

host
string

Host

Example:

"example.com"

method
string

Request method

Example:

"GET"

query_params
string

Request query params

Example:

"offset=20&limit=10"

status_code
integer

Request status

Example:

200

reverted
boolean

Request request

Example:

true

user
integer

User ID

Example:

123456