Use este ponto de extremidade para enviar o código de site seal associado a um pedido por e-mail.
Use o ponto de extremidade Site seal hash para obter o valor 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
Nome | Obr/Opc | Tipo | Descrição |
---|---|---|---|
seal_hash | obrigatório | string | Especifique o hash de site seal associado ao pedido. |
seal_number | obrigatório | int |
Marca de site seal a usar. Valores permitidos: 3 (DigiCert), 15 (Norton)
|
seal_size | obrigatório | string |
Tamanho do seal. Valores permitidos: s , m , l
|
seal_color | obrigatório | string | Cor do texto do site seal. |
seal_language | obrigatório | string |
Idioma da janela pop-up do site seal. Valores permitidos: en , es , fr , ja , pt
|