GET
/
cdn
/
activity_log
/
requests
/
{log_id}
curl --request GET \
  --url https://api.gcore.com/cdn/activity_log/requests/{log_id} \
  --header 'Authorization: <api-key>'
{
  "id": 1,
  "user_id": 174,
  "token_id": 3,
  "client_id": 174,
  "requested_at": "2021-07-07 09:02:29.871030+00:00",
  "path": "/resources/1/purge",
  "remote_ip_address": "1.2.3.4",
  "host": "api.gcore.com",
  "method": "POST",
  "query_params": {},
  "data": {
    "paths": [
      "/url-path-1",
      "/url-path-2"
    ]
  },
  "status_code": 201,
  "actions": []
}

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.