Get Invalidation List¶
GET /prod-api/acdn/cloudfrontRest/getInvalidationList/{distributionId}
Request Parameters¶
Name | Location | Type | Required | Description |
---|---|---|---|---|
distributionId | path | integer | Yes | Distribution id |
Authorization | header | string | Yes | none |
Response Example
Success
{
"msg": "Operation Success",
"code": 200,
"data": {
"marker": "",
"nextMarker": "I9U3P14589VE4UH1L",
"maxItems": 100,
"isTruncated": true,
"quantity": 100,
"items": [
{
"id": "IYP12546HW0D",
"createTime": "2024-01-19T14:11:15.210+08:00",
"status": "Completed"
}
],
"truncated": true
}
}
401 Response
Response Results¶
Status Code | Status Meaning | Description | Data Model |
---|---|---|---|
200 | [OK] | Success | Inline |
401 | [Unauthorized] | Unauthorized | Inline |
403 | [Forbidden] | Forbidden | Inline |
404 | [Not Found] | Not Found | Inline |
Response Data Structure¶
Status Code 200
Name | Type | Required | Constraints | Chinese Name | Description |
---|---|---|---|---|---|
» msg | string | true | none | none | |
» code | integer | true | none | none | |
» data | object | true | none | none | |
»» marker | string | true | none | none | |
»» nextMarker | null | true | none | none | |
»» maxItems | integer | true | none | none | |
»» isTruncated | boolean | true | none | none | |
»» quantity | integer | true | none | none | |
»» items | [object] | true | none | none | |
»»» id | string | false | none | Invalidation ID | none |
»»» createTime | string | false | none | Creation time | none |
»»» status | string | false | none | Status | Completed:Completed InProgress:InProgress |
»» truncated | boolean | true | none | none |