使用此端点通过电子邮件发送与订单关联的网站标章代码。
使用网站标章哈希端点获取 seal_hash
值。
curl -X POST \
https://www.digicert.com/services/v2/order/certificate/{{order_id}}/site-seal/email-seal \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}' \
-d '{
"seal_hash": "Ab1Cd2e",
"seal_number": 3,
"seal_size": "l",
"seal_color": "white",
"seal_language": "en"
}'
import requests
url = "https://www.digicert.com/services/v2/order/certificate/{{order_id}}/site-seal/email-seal"
payload = "{\n\t\"seal_hash\": \"Ab1Cd2e\",\n\t\"seal_number\": 3,\n\t\"seal_size\": \"l\",\n\t\"seal_color\": \"white\",\n\t\"seal_language\": \"en\"\n}"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/order/certificate/{{order_id}}/site-seal/email-seal"
payload := strings.NewReader("{\n\t\"seal_hash\": \"Ab1Cd2e\",\n\t\"seal_number\": 3,\n\t\"seal_size\": \"l\",\n\t\"seal_color\": \"white\",\n\t\"seal_language\": \"en\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
var request = require("request");
var options = { method: 'POST',
url: 'https://www.digicert.com/services/v2/order/certificate/{{order_id}}/site-seal/email-seal',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' },
body:
{ seal_hash: 'Ab1Cd2e',
seal_number: 3,
seal_size: 'l',
seal_color: 'white',
seal_language: 'en' },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
// empty
名称 | 请求/选项 | 类型 | 描述 |
---|---|---|---|
seal_hash | 必填 | string | 指定与订单关联的标章哈希。 |
seal_number | 必填 | int |
要使用的网站标章品牌。 允许的值: 3 (DigiCert),15 (Norton)
|
seal_size | 必填 | string |
标章大小。 允许的值: s ,m ,l
|
seal_color | 必填 | string | 网站标章文字颜色。 |
seal_language | 必填 | string |
网站标章弹窗语言。 允许的值: en , es , fr , ja , pt
|