All Products
Search
Document Center

CDN:DescribeRefreshTasks

Last Updated:Mar 28, 2024

Queries the status of refresh or prefetch tasks that belong to an accelerated domain name.

Operation description

  • You can query the status of tasks by task ID or URL.
  • You can set both the TaskId and ObjectPath parameters. If you do not set the TaskId or ObjectPath parameter, data entries on the first page (20 entries) collected in the last 3 days are returned.
  • You can query data collected in the last 3 days.
  • If auto CDN cache update is enabled in the Object Storage Service (OSS) console, you cannot call the DescribeRefreshTasks operation to query automatic refresh tasks in OSS.
  • You can call this operation up to 10 times per second per account. If you want to query tasks at a higher frequency, call the DescribeRefreshTaskById operation. This operation allows you to query tasks by task ID.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
cdn:DescribeRefreshTasksREAD
  • Domain
    acs:cdn:*:{#accountId}:domain/{#DomainName}
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
TaskIdstringNo

The ID of the task that you want to query.

1234321
ObjectPathstringNo

The path of the object. The path is used as a condition for exact matching.

http://example.com/1.txt
PageNumberintegerNo

The number of the page to return. Valid values: 1 to 100000.

1
ObjectTypestringNo

The type of the task. Valid values:

  • file: refreshes one or more files.
  • directory: refreshes files in specific directories.
  • regex: refreshes content based on a regular expression.
  • preload: prefetches one or more files.
Note If you set the DomainName or Status parameter, you must also set the ObjectType parameter.
file
DomainNamestringNo

The accelerated domain name. You can specify only one accelerated domain name in each call. By default, this operation queries the status of tasks for all accelerated domain names.

example.com
StatusstringNo

The status of the task. Valid values:

  • Complete: The task is complete.
  • Refreshing: The task is in progress.
  • Failed: The task failed.
Complete
PageSizeintegerNo

The number of entries to return on each page. Default value: 20. Maximum value: 100. Valid values: 1 to 100.

20
StartTimestringNo

The start of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

2017-12-21T08:00:00Z
EndTimestringNo

The end time. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

Note The end time must be later than the start time.
2017-12-22T08:00:00Z
ResourceGroupIdstringNo

The ID of the resource group.

rg-acfmyuji4b6r4**

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

174F6032-AA26-470D-B90E-36F0EB205BEE
PageNumberlong

The page number of the returned page.

10
PageSizelong

The number of entries returned per page.

1
TotalCountlong

The total number of entries returned.

2
Tasksobject []

Details about tasks.

Statusstring

The status of the task. Valid values:

  • Complete: The task has completed.
  • Refreshing: The task is in progress.
  • Failed: The task failed.
Complete
CreationTimestring

The time when the task was created. The time is displayed in UTC.

2014-11-27T08:23:22Z
ObjectTypestring

The type of the task.

  • file: refreshes one or more files.
  • directory: refreshes files in the specified directories.
  • regex: refreshes content based on a regular expression.
  • preload: prefetches one or more files.
file
Processstring

The progress of the task, in percentage.

100%
Descriptionstring

The type of the error returned when the refresh or prefetch task failed. Valid values:

  • InternalError: An internal error occurred.
  • OriginTimeout: The response from the origin server timed out.
  • OriginReturnStatusCode 5XX: The origin server returned a 5XX error.
Internal Error
ObjectPathstring

The URL of the object refreshed.

http://example.com/1.txt
TaskIdstring

The ID of the task.

704225667

Examples

Sample success responses

JSONformat

{
  "RequestId": "174F6032-AA26-470D-B90E-36F0EB205BEE",
  "PageNumber": 10,
  "PageSize": 1,
  "TotalCount": 2,
  "Tasks": {
    "CDNTask": [
      {
        "Status": "Complete",
        "CreationTime": "2014-11-27T08:23:22Z",
        "ObjectType": "file",
        "Process": "100%",
        "Description": "Internal Error",
        "ObjectPath": "http://example.com/1.txt",
        "TaskId": "704225667"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidTaskId.MalformedThe specified TaskId is invalid.-
400MissingParameter.ObjectTypeThe ObjectType parameter is required if DomainName or Status is specified.-
400MissingTimeParameterThe StartTime and EndTime must be both specified.You must set both the start time and the end time.
400InvalidEndTime.MismatchThe specified EndTime is earlier than the StartTime.EndTime is earlier than StartTime.
400DomainNameOverLimitA maximum of 500 domains are supported for each request.-
400InvalidTimeThe query time cannot exceed the last 3 days.-
400InvalidStartTime.MalformedThe specified StartTime is invalid.The format of the start time is invalid. Specify a valid value.
400InvalidEndTime.MalformedThe specified EndTime is invalid.The EndTime parameter is set in an invalid format. For more information, see the API references.
400InvalidObjectPath.MalformedThe specified ObjectPath is invalid.-
400InvalidStartTime.ValueNotSupportedThe specified StartTime is invalid.The specified start time is invalid. For more information, see the API references.
400InvalidEndTime.ValueNotSupportedThe specified EndTime is invalid.-
400InvalidObjectType.ValueNotSupportedThe specified ObjectType is not supported.-
400InvalidStatus.ValueNotSupportedThe specified Status is not supported.-
429TooManyRequestsThe server is busy. Please try again later.The server is busy. Please try again later.

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

Change history

Change timeSummary of changesOperation
2024-02-22The Error code has changedsee changesets
Change itemChange content
Error CodesThe Error code has changed.
    delete Error Codes: 400
    delete Error Codes: 429
2023-03-29The Error code has changedsee changesets
Change itemChange content
Error CodesThe Error code has changed.
    delete Error Codes: 400
    delete Error Codes: 429