curl --request GET \
--url https://api.gcore.com/cdn/logs_uploader/configs/{config_id} \
--header 'Authorization: <api-key>'
{
"id": 123,
"client_id": 123,
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z",
"enabled": true,
"name": "<string>",
"policy": 123,
"target": 123,
"for_all_resources": true,
"resources": [
123
],
"status": {
"status": "in_progress",
"code": 123,
"updated": "2023-11-07T05:31:56Z",
"details": "<string>"
}
}
Get information about logs uploader config.
curl --request GET \
--url https://api.gcore.com/cdn/logs_uploader/configs/{config_id} \
--header 'Authorization: <api-key>'
{
"id": 123,
"client_id": 123,
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z",
"enabled": true,
"name": "<string>",
"policy": 123,
"target": 123,
"for_all_resources": true,
"resources": [
123
],
"status": {
"status": "in_progress",
"code": 123,
"updated": "2023-11-07T05:31:56Z",
"details": "<string>"
}
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Successful.
The response is of type object
.
Was this page helpful?