Certificate Management Interface¶
GET Query Certificate Configuration List¶
GET /prod-api/cdn/layer7/ssl/describeDomainSSL
Body Request Parameters
Request Parameters¶
Name | Location | Type | Required | Description |
---|---|---|---|---|
beginTimeDate | query | string | No | none |
endTimeDate | query | string | No | none |
pageNum | query | integer | Yes | Current page number |
pageSize | query | integer | Yes | Items per page |
search | query | string | No | Search value |
searchHeader | query | integer | No | none |
Authorization | header | string | No | none |
body | body | object | No | none |
Example Responses
200 Response
{
"total": 5,
"rows": [
{
"sslId": 262,
"domainId": 215,
"domainName": "waf2.demon.com",
"source": 2,
"endTime": "2025-07-01T19:41:53.000+08:00",
"status": "normal",
"port": 0,
"protocol": 1,
"certificateTaskStatus": null
},
{
"sslId": 253,
"domainId": 231,
"domainName": "lw1test.com",
"source": 2,
"endTime": null,
"status": "issuing",
"port": 0,
"protocol": 0,
"certificateTaskStatus": "failed"
},
{
"sslId": 251,
"domainId": 213,
"domainName": "waf.demo.com",
"source": 0,
"endTime": "2024-10-14T07:59:59.000+08:00",
"status": "normal",
"port": 0,
"protocol": 0,
"certificateTaskStatus": null
}
],
"code": 200,
"msg": "Success"
}
401 Response
Responses¶
Status Code | Status Meaning | Description | Data Model |
---|---|---|---|
200 | OK | none | Inline |
401 | Unauthorized | none | Inline |
403 | Forbidden | none | Inline |
404 | Not Found | none | Inline |
Response Data Structure¶
Status Code 200
Name | Type | Required | 约束 | Chinese Name | Description |
---|---|---|---|---|---|
» total | integer | true | none | none | |
» rows | [object] | true | none | none | |
»» sslId | integer | true | none | Certificate ID | none |
»» domainId | integer | true | none | DomainID | none |
»» domainName | string | true | none | Domain | none |
»» source | integer | true | none | Certificate Source | source:0 for self-owned certificate source:1 1 for managed certificate |
»» endTime | string¦null | true | none | Expiration Time | none |
»» status | string | true | none | SSL Status | status:issuing "issuing" for in-progress status:normal "normal" for normal |
»» port | integer | true | none | Port | none |
»» protocol | integer | true | none | Origin Type | protocol:0 HTTP protocol:1 HTTPS |
»» certificateTaskStatus | string¦null | true | none | none | |
» code | integer | true | none | none | |
» msg | string | true | none | none |