이 엔드포인트를 사용하여 계정에 대한 제품 가격을 나열합니다.
curl -X GET \
https://www.digicert.com/services/v2/product/pricing \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/product/pricing"
payload = ""
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/product/pricing"
req, _ := http.NewRequest("GET", url, nil)
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: 'GET',
url: 'https://www.digicert.com/services/v2/product/pricing',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
{
"standard_prices": [
{
"group_name": "ssl_certificate",
"name_id": "ssl_plus",
"name": "Standard SSL",
"prices": [
{
"lifetime": 1,
"cost": 198,
"currency": "usd"
},
{
"lifetime": 2,
"cost": 376,
"currency": "usd"
}
]
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_multi_domain",
"name": "Multi-Domain SSL",
"prices": [
{
"lifetime": 1,
"cost": 358,
"additional_name_cost": 135,
"currency": "usd"
},
{
"lifetime": 2,
"cost": 680,
"additional_name_cost": 257,
"currency": "usd"
}
]
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_wildcard",
"name": "WildCard",
"prices": [
{
"lifetime": 1,
"cost": 658,
"additional_name_cost": 658,
"currency": "usd"
},
{
"lifetime": 2,
"cost": 1250,
"additional_name_cost": 1250,
"currency": "usd"
}
]
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_ev_plus",
"name": "EV SSL",
"prices": [
{
"lifetime": 1,
"cost": 299,
"currency": "usd"
},
{
"lifetime": 2,
"cost": 568,
"currency": "usd"
}
]
},
...
]
}
이름 | 유형 | 설명 |
---|---|---|
standard_prices | array | 제품 가격의 목록입니다. |
.. group_name | string |
제품 카테고리 이름입니다. 용어집 — 제품 그룹을 참조하십시오. |
.. name_id | string |
제품 이름 ID입니다. 용어집 — 제품 식별자를 참조하십시오. |
.. name | string | 제품의 이름을 표시합니다. |
.. prices | array | 제품 가격의 목록입니다. |
.. .. lifetime | int | 유효 기간(년)입니다. |
.. .. cost | int | 유효 기간에 기초한 제품 코드입니다. |
.. .. additional_name_cost | int | 추가 SAN의 비용입니다. |
.. .. currency | string |
통화 단위입니다. 가능한 값: USD
|