Используйте эту конечную точку для вывода списка продуктов, доступных для вашей учетной записи.
curl -X GET \
https://www.digicert.com/services/v2/product \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/product"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/product"
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',
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);
});
{
"products": [
{
"group_name": "ssl_certificate",
"name_id": "ssl_plus",
"name": "Standard SSL",
"type": "ssl_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": true
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_multi_domain",
"name": "Multi-Domain SSL",
"type": "ssl_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": true
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_wildcard",
"name": "WildCard",
"type": "ssl_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": true
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_ev_plus",
"name": "EV SSL",
"type": "ssl_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": true
},
{
"group_name": "ssl_certificate",
"name_id": "ssl_ev_multi_domain",
"name": "EV Multi-Domain",
"type": "ssl_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": true
},
{
"group_name": "client_certificate",
"name_id": "client_digital_signature_plus",
"name": "Digital Signature Plus",
"type": "client_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": [],
"csr_required": false
},
{
"group_name": "client_certificate",
"name_id": "client_premium",
"name": "Premium",
"type": "client_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": [],
"csr_required": false
},
{
"group_name": "code_signing_certificate",
"name_id": "code_signing",
"name": "Code Signing",
"type": "code_signing_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha1",
"name": "SHA-1"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": false
},
{
"group_name": "code_signing_certificate",
"name_id": "code_signing_ev",
"name": "EV Code Signing",
"type": "code_signing_certificate",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha1",
"name": "SHA-1"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": false
},
{
"group_name": "document_signing",
"name_id": "document_signing_org_1",
"name": "Document Signing - Organization (2000)",
"type": "document_signing",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": false
},
{
"group_name": "document_signing",
"name_id": "document_signing_org_2",
"name": "Document Signing - Organization (5000)",
"type": "document_signing",
"allowed_container_ids": [
11223,
11224,
11225
],
"allowed_validity_years": [
1,
2,
3
],
"signature_hash_types": {
"allowed_hash_types": [
{
"id": "sha256",
"name": "SHA-256"
},
{
"id": "sha384",
"name": "SHA-384"
},
{
"id": "sha512",
"name": "SHA-512"
}
],
"default_hash_type_id": "sha256"
},
"csr_required": false
}
]
}
Имя | Тип | Описание |
---|---|---|
products | array | Список всех доступных продуктов. |
.. group_name | string |
Группа, к которой относится продукт. См. Словарь — Идентификаторы продуктов |
.. name_id | string |
Идентификатор продукта. См. Словарь — Идентификаторы продуктов |
.. name | string | Отобразить имя продукта. |
.. type | string |
Тип продукта. См. Словарь — Типы продуктов |
.. allowed_container_ids | array of ints | Список контейнеров, которые могут запрашивать указанный продукт. |
.. allowed_validity_years | array of ints | Список допустимых сроков действия в годах, которые могут быть запрошены для продукта. |
.. signature_hash_types | object | Контейнер для данных хэша подписи. |
.. .. allowed_hash_types | array | Список типов допустимых типов хэша продукта. |
.. .. .. id | string |
Хэш-идентификатор. См. Словарь — Типы хэша |
.. .. .. name | string | Хэш-имя. |
.. .. default_hash_type_id | string | Тип хэша по умолчанию, используемый для продукта. |
.. allowed_ca_certs | array | Список сертификатов ЦС, которые можно использовать для подписывания частного сертификата SSL. |
.. .. id | string | Идентификатор сертификата ЦС. |
.. .. name | string | Имя сертификата ЦС. |
.. csr_required | bool | Указывает, требуется ли CSR при запросе типа продукта. |