Используйте эту конечную точку для вывода списка цен на продукты для вашей учетной записи.
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 |
Идентификатор наименования продукта. См. Словарь — Идентификаторы продуктов |
.. name | string | Отобразить имя продукта. |
.. prices | array | Список цен на продукты. |
.. .. lifetime | int | Срок действия в годах. |
.. .. cost | int | Стоимость продукта на основе срока действия. |
.. .. additional_name_cost | int | Стоимость дополнительных альтернативных имен субъектов (SAN). |
.. .. currency | string |
Валютная единица. Допустимые значения: USD
|