All Products
Search
Document Center

CDN:DescribeRefreshTaskById

Last Updated:Jul 04, 2024

Queries the statuses of refresh or prefetch tasks by task ID.

Operation description

  • You can query data in the last three days.
  • You can call this operation up to 30 times per second per account.

Debugging

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

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TaskIdstringYes

The ID of the task that you want to query.

You can call the RefreshObjectCaches operation to query task IDs. Then, you can use the task IDs to query task status.

You can specify up to 10 task IDs. Separate task IDs with commas (,).

12345678

Response parameters

ParameterTypeDescriptionExample
object
TotalCountlong

The total number of tasks.

2
RequestIdstring

The ID of the request.

E0C2EF95-B1EC-4C93-855E-2059A7DA2B7B
Tasksarray<object>

Details about tasks.

object
Statusstring

The status of the task. Valid values:

  • Complete
  • Pending
  • Refreshing
  • Failed
Complete
CreationTimestring

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

2020-08-03T08:54:23Z
ObjectTypestring

The type of the task. Valid values:

  • file: refreshes an individual file.
  • directory: refreshes files in the specified directory.
  • preload: prefetches an individual file.
  • regex: refreshes content based on a regular expression.
file
Processstring

The progress of the task, in percentage.

100%
Descriptionstring

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

  • Internal Error
  • Origin Timeout
  • Origin Return StatusCode 5XX
Internal Error
ObjectPathstring

The path of the object refreshed by the refresh task.

http://example.com/abc.jpg
TaskIdstring

The ID of the task.

24840

Examples

Sample success responses

JSONformat

{
  "TotalCount": 2,
  "RequestId": "E0C2EF95-B1EC-4C93-855E-2059A7DA2B7B",
  "Tasks": [
    {
      "Status": "Complete",
      "CreationTime": "2020-08-03T08:54:23Z",
      "ObjectType": "file",
      "Process": "100%",
      "Description": "Internal Error",
      "ObjectPath": "http://example.com/abc.jpg",
      "TaskId": "24840"
    }
  ]
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidTaskId.MalformedThe specified TaskId is invalid.-
400InvalidObjectPath.MalformedThe specified ObjectPath is invalid.-
400MissingTimeParameterThe StartTime and EndTime must be both specified.You must set both the start time and the end time.
400MissingParameter.ObjectTypeThe ObjectType parameter is required if DomainName or ObjectType is specified.-
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.
400InvalidEndTime.MismatchThe specified EndTime is earlier than the StartTime.EndTime is earlier than StartTime.
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.-
400DomainNameOverLimitA maximum of 500 domains are supported for each request.-
400InvalidTaskId.MalformedThe count of taskIds should be between 1 and 10.-
400InvalidParametersThe parameters you provided are invalid.-
400InvalidTimeThe query time cannot exceed the last 3 days.-
429TooManyRequestsToo many requests, please try again later-

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

Change history

Change timeSummary of changesOperation
No change history