このエンドポイントを使用して、お使いのアカウントの製品を一覧表示します。
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 証明書の署名に使用できる CA 証明書のリスト |
.. .. id | string | CA 証明書 ID |
.. .. name | string | CA 証明書名 |
.. csr_required | bool | 製品タイプの申請時に CSR が必要かを指定します。 |