Domain name for API request: teo.intl.tencentcloudapi.com.
This API is used to verify a free certificate and obtain the application result. If verified, you can query the free certificate information for the corresponding domain name application through this API. If failed to apply, this API will return the corresponding verification failure message.
This API is used to check the free certificate application result after triggering the ApplyFreeCertificate . Once the application is successful, you need to configure through the ModifyHostsCertificate to deploy the free certificate to the acceleration domain.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: CheckFreeCertificateVerification. |
| Version | Yes | String | Common Params. The value used for this API: 2022-09-01. |
| Region | No | String | Common Params. This parameter is not required. |
| ZoneId | Yes | String | Zone ID. |
| Domain | Yes | String | Acceleration domain name, that domain name used when applying for free certificate. |
| Parameter Name | Type | Description |
|---|---|---|
| CommonName | String | Specifies the domain name to which the certificate is issued when the free certificate application succeeds. Note: only one free certificate can be applied for a domain name. if a wildcard certificate has been applied for the domain name, its subdomains will use the wildcard certificate. |
| SignatureAlgorithm | String | Specifies the signature algorithm used by the certificate when the free certificate application succeeds. currently only support RSA 2048. |
| ExpireTime | Timestamp ISO8601 | Expiration time of the certificate when the free certificate application is successful. the time is in coordinated universal time (UTC), following the ISO 8601 standard date and time format. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to check whether the free certificate application succeeds for the domain name (cc.xzone.cloud) under the site (ZoneId is zone-28v607hq8d3m) after triggering the application.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: CheckFreeCertificateVerification
<Common request parameters>
{
"ZoneId": "zone-28v607hq8d3m",
"Domain": "cc.xzone.cloud"
}{
"Response": {
"Error": {
"Code": "ResourceUnavailable.RecordUnExpected",
"Message": "Unable to detect the verification value correctly. Please check whether the current domain name has configured regional resolution or policy interception."
},
"RequestId": "ed93f3cb-f35e-473f-b9f3-0d451b8b79c6"
}
}
This example shows you how to check whether the free certificate application succeeds for the domain name (aa.xzone.cloud) under the site (ZoneId zone-28v607hq8d3m) after triggering the free certificate application.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: CheckFreeCertificateVerification
<Common request parameters>
{
"ZoneId": "zone-28v607hq8d3m",
"Domain": "aa.xzone.cloud"
}{
"Response": {
"RequestId": "dc1ba58b-4e4e-4a71-bed6-2b777c48d17e",
"CommonName": "aa.xzone.cloud",
"SignatureAlgorithm": "RSA 2048",
"ExpireTime": "2025-07-31T07:06:57Z"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
There is no error code related to the API business logic. For other error codes, please see Common Error Codes.
文档反馈