新增自訂使用者標籤到一份或多份憑證中。使用標籤自訂您想要如何分類和管理您的憑證。
curl -X POST \
https://daas.digicert.com/apicontroller/v1/certificate/addTags \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}' \
-d '{
"accountId": "126993",
"divisionIds": [],
"certId": [
"fb92ee3a2fd0cb6549e58c252f8787f467bfbeff"
],
"tags": "AddTags"
}'
import requests
url = "https://daas.digicert.com/apicontroller/v1/certificate/addTags"
payload = "{\n \"accountId\": \"126993\",\n \"divisionIds\": [],\n \"certId\": [\n \"fb92ee3a2fd0cb6549e58c252f8787f467bfbeff\"\n ],\n \"tags\": \"AddTags\"\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://daas.digicert.com/apicontroller/v1/certificate/addTags"
payload := strings.NewReader("{\n \"accountId\": \"126993\",\n \"divisionIds\": [],\n \"certId\": [\n \"fb92ee3a2fd0cb6549e58c252f8787f467bfbeff\"\n ],\n \"tags\": \"AddTags\"\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://daas.digicert.com/apicontroller/v1/certificate/addTags',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' },
body:
{ accountId: '126993',
divisionIds: [],
certId: [ 'fb92ee3a2fd0cb6549e58c252f8787f467bfbeff' ],
tags: 'AddTags' },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
{
"data": "tags updated successfully"
}
名稱 | 必填/選填 | 類型 | 說明 |
---|---|---|---|
accountId | 必填 | string | 帳戶 ID。 |
divisionIds | 選填 | array | 分區 ID。 |
certId | 必填 | array | 在端點上所找到用於憑證的 DigiCert 產生的唯一 ID。取得來自列出憑證要求的憑證 ID。 |
tags | 必填 | string | 自訂使用者標籤。 |