Конечная точка запланированной задачи недоступна в Deep Security 11.1.Вы можете обновить свой менеджер до версии 11.2.225, чтобы использовать эту конечную точку.(Я работаю в Trend Micro в качестве CSE)
Вот пример запроса cURL с использованием версии 11.2.225:
curl -X GET \
https://localhost:80/api/scheduledtasks \
-H 'api-secret-key: redacted' \
-H 'api-version: v1' --insecure
Ответ:
{
"scheduledTasks": [{
"name": "Component Update Task",
"type": "check-for-security-updates",
"scheduleDetails": {
"timeZone": "America/Bahia_Banderas",
"recurrenceType": "daily",
"dailyScheduleParameters": {
"startTime": 1535477100000,
"frequencyType": "everyday"
}
},
"enabled": true,
"lastRunTime": 1542651954042,
"nextRunTime": 1542738300000,
"checkForSecurityUpdatesTaskParameters": {
"computerFilter": {
"type": "all-computers"
}
},
"ID": 1
}]
}