All Products
Search
Document Center

Security Center:DescribeCycleTaskList

Last Updated:Mar 20, 2026

Queries periodic scan tasks. The tasks include image scan tasks, urgent vulnerability scan tasks, and virus scan tasks.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TaskNamestringNo

The name of the task. Valid values:

  • VIRUS_VUL_SCHEDULE_SCAN: virus scan task
  • IMAGE_SCAN: image scan task
  • EMG_VUL_SCHEDULE_SCAN: urgent vulnerability scan task
IMAGE_SCAN
TaskTypestringNo

The type of the task. Valid values:

  • VIRUS_VUL_SCHEDULE_SCAN: virus scan task
  • IMAGE_SCAN: image scan task
  • EMG_VUL_SCHEDULE_SCAN: urgent vulnerability scan task
IMAGE_SCAN
CurrentPageintegerNo

The number of the page to return.

1
PageSizeintegerNo

The number of entries to return on each page.

20
ConfigIdstringNo

The ID of the task configuration.

Note You can call the CreateCycleTask operation to query the IDs of task configurations.
f93b6ee24cfd0aad44b897ad5051****

Response parameters

ParameterTypeDescriptionExample
object

The data returned.

RequestIdstring

The ID of the request, which is used to locate and troubleshoot issues.

A4EB8B1C-1DEC-5E18-BCD0-D1BBB393****
PageInfoobject

The pagination information.

CurrentPageinteger

The page number of the returned page.

1
PageSizeinteger

The number of entries returned per page.

20
TotalCountinteger

The total number of entries returned.

149
Countinteger

The number of entries returned on the current page.

9
CycleScheduleResponseListarray<object>

An array that consists of periodic scan tasks.

CycleScheduleResponseobject

The information about the periodic scan task.

LastTaskIdstring

The ID of the last task.

38730bb078f4a1461d4ed283994c****
ConfigIdstring

The configuration ID.

2cdbdeba8dd70586d5814d4cbf21****
TargetEndTimeinteger

The end time of the task. The time must be a time frame.

7
NextStartTimeStrlong

The time when the next task starts. The value is a UNIX timestamp. Unit: milliseconds.

1671184531000
TaskNamestring

The name of the task.

IMAGE_SCAN
TaskTypestring

The type of the task.

IMAGE_SCAN
IntervalPeriodinteger

The interval between which two consecutive tasks are run.

3
FirstDateStrlong

The time when the task first started.

1667491200000
Paramstring

The extended information.

{"userAgreement":"yes","lang":"zh"}
PeriodUnitstring

The unit of the scan interval. Valid values:

  • day
  • hour
day
TargetStartTimeinteger

The start time of the task. The start time must be a time frame.

0
Enableinteger

Indicates whether the configuration for the task interval was enabled. Valid values:

  • 1: enabled.
  • 0: disabled.
1

Examples

Sample success responses

JSONformat

{
  "RequestId": "A4EB8B1C-1DEC-5E18-BCD0-D1BBB393****",
  "PageInfo": {
    "CurrentPage": 1,
    "PageSize": 20,
    "TotalCount": 149,
    "Count": 9
  },
  "CycleScheduleResponseList": [
    {
      "LastTaskId": "38730bb078f4a1461d4ed283994c****",
      "ConfigId": "2cdbdeba8dd70586d5814d4cbf21****",
      "TargetEndTime": 7,
      "NextStartTimeStr": 1671184531000,
      "TaskName": "IMAGE_SCAN",
      "TaskType": "IMAGE_SCAN",
      "IntervalPeriod": 3,
      "FirstDateStr": 1667491200000,
      "Param": {
        "userAgreement": "yes",
        "lang": "zh"
      },
      "PeriodUnit": "day",
      "TargetStartTime": 0,
      "Enable": 1
    }
  ]
}

Error codes

HTTP status codeError codeError messageDescription
403NoPermissioncaller has no permissionYou are not authorized to do this operation.
500ServerErrorServerError-

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2025-12-15The Error code has changedView Change Details