GET
/
cdn
/
activity_log
/
requests
/
{log_id}
Get CDN activity logs details
curl --request GET \
  --url https://api.gcore.com/cdn/activity_log/requests/{log_id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "user_id": 123,
  "token_id": 123,
  "client_id": 123,
  "requested_at": "<string>",
  "path": "<string>",
  "remote_ip_address": "<string>",
  "host": "<string>",
  "method": "<string>",
  "query_params": "<string>",
  "data": "<string>",
  "status_code": 123,
  "actions": {
    "action_type": "<any>",
    "state_before_request": {},
    "state_after_request": {}
  }
}

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

log_id
integer
required

Activity logs record ID.

Response

200
application/json

Successful.

The response is of type object.