このエンドポイントを使用して、サブアカウントに製品可用性と価格を設定します。
このエンドポイントは、products
アレイについて破壊的です。既存のアレイに送信済アレイが上書きされます。
curl -X PUT \
'https://www.digicert.com/services/v2/account/subaccount/{{subaccount_id}}/products' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}' \
-d '{
"products": [
{
"product_name_id": "ssl_plus"
},
{
"product_name_id": "ssl_multi_domain",
"product_name": "Multi-Domain SSL",
"prices": [
{
"lifetime": 1,
"cost": 412,
"additional_fqdn_cost": 1351
},
{
"lifetime": 2,
"cost": 782,
"additional_fqdn_cost": 257
}
]
},
{
"product_name_id": "ssl_wildcard",
"product_name": "WildCard",
"prices": [
{
"lifetime": 1,
"cost": 688,
"additional_wildcard_cost": 658
},
{
"lifetime": 2,
"cost": 1307,
"additional_wildcard_cost": 1250
}
]
},
{
"product_name_id": "ssl_ev_plus",
"product_name": "EV SSL",
"prices": [
{
"lifetime": 1,
"cost": 344
},
{
"lifetime": 2,
"cost": 654
}
]
},
{
"product_name_id": "ssl_ev_multi_domain",
"product_name": "EV Multi-Domain",
"prices": [
{
"lifetime": 1,
"cost": 574,
"additional_fqdn_cost": 168
},
{
"lifetime": 2,
"cost": 1090,
"additional_fqdn_cost": 319
}
]
}
]
}'
import requests
url = "https://www.digicert.com/services/v2/account/subaccount/{{subaccount_id}}/products"
payload = "{\n \"products\": [\n {\n \"product_name_id\": \"ssl_plus\"\n },\n {\n \"product_name_id\": \"ssl_multi_domain\",\n \"product_name\": \"Multi-Domain SSL\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 412,\n \"additional_fqdn_cost\": 1351\n },\n {\n \"lifetime\": 2,\n \"cost\": 782,\n \"additional_fqdn_cost\": 257\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_wildcard\",\n \"product_name\": \"WildCard\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 688,\n \"additional_wildcard_cost\": 658\n },\n {\n \"lifetime\": 2,\n \"cost\": 1307,\n \"additional_wildcard_cost\": 1250\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_ev_plus\",\n \"product_name\": \"EV SSL\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 344\n },\n {\n \"lifetime\": 2,\n \"cost\": 654\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_ev_multi_domain\",\n \"product_name\": \"EV Multi-Domain\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 574,\n \"additional_fqdn_cost\": 168\n },\n {\n \"lifetime\": 2,\n \"cost\": 1090,\n \"additional_fqdn_cost\": 319\n }\n ]\n }\n ]\n}"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("PUT", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/account/subaccount/{{subaccount_id}}/products"
payload := strings.NewReader("{\n \"products\": [\n {\n \"product_name_id\": \"ssl_plus\"\n },\n {\n \"product_name_id\": \"ssl_multi_domain\",\n \"product_name\": \"Multi-Domain SSL\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 412,\n \"additional_fqdn_cost\": 1351\n },\n {\n \"lifetime\": 2,\n \"cost\": 782,\n \"additional_fqdn_cost\": 257\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_wildcard\",\n \"product_name\": \"WildCard\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 688,\n \"additional_wildcard_cost\": 658\n },\n {\n \"lifetime\": 2,\n \"cost\": 1307,\n \"additional_wildcard_cost\": 1250\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_ev_plus\",\n \"product_name\": \"EV SSL\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 344\n },\n {\n \"lifetime\": 2,\n \"cost\": 654\n }\n ]\n },\n {\n \"product_name_id\": \"ssl_ev_multi_domain\",\n \"product_name\": \"EV Multi-Domain\",\n \"prices\": [\n {\n \"lifetime\": 1,\n \"cost\": 574,\n \"additional_fqdn_cost\": 168\n },\n {\n \"lifetime\": 2,\n \"cost\": 1090,\n \"additional_fqdn_cost\": 319\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("PUT", 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: 'PUT',
url: 'https://www.digicert.com/services/v2/account/subaccount/{{subaccount_id}}/products',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' },
body:
{ products:
[ { product_name_id: 'ssl_plus' },
{ product_name_id: 'ssl_multi_domain',
product_name: 'Multi-Domain SSL',
prices:
[ { lifetime: 1, cost: 412, additional_fqdn_cost: 1351 },
{ lifetime: 2, cost: 782, additional_fqdn_cost: 257 } ] },
{ product_name_id: 'ssl_wildcard',
product_name: 'WildCard',
prices:
[ { lifetime: 1, cost: 688, additional_wildcard_cost: 658 },
{ lifetime: 2, cost: 1307, additional_wildcard_cost: 1250 } ] },
{ product_name_id: 'ssl_ev_plus',
product_name: 'EV SSL',
prices: [ { lifetime: 1, cost: 344 }, { lifetime: 2, cost: 654 } ] },
{ product_name_id: 'ssl_ev_multi_domain',
product_name: 'EV Multi-Domain',
prices:
[ { lifetime: 1, cost: 574, additional_fqdn_cost: 168 },
{ lifetime: 2, cost: 1090, additional_fqdn_cost: 319 } ] } ] },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
// empty
空の products
アレイを送信すると、サブアカウントについてすべての製品が無効になります。
名前 | 申請/オプション | 種別 | 説明 |
---|---|---|---|
products | 必須 | array | サブアカウントについて有効にする製品のリスト |
.. product_name_id | 任意 | string |
サブアカウントで有効にする製品の名前 ID 「用語集 — 製品識別子」を参照してください |
.. prices | 任意 | array |
指定製品に設定する製品の価格リスト。 注意:省略された場合、指定製品の価格は、親アカウントのデフォルト価格に設定されます。 |
.. .. lifetime | 必須 | int | 価格設定が適用される有効期間(年数)。 |
.. .. cost | 必須 |
int float |
製品の基本価格を指定します。 最大: 99999999.99
|
.. .. additional_fqdn_cost | 必須* |
int float |
オーダーに追加された各追加ドメイン名 (SAN) のコストを指定します。 *このパラメータをサポートする製品のみに必要です。「製品別パラメータサポート」を参照してください。 最大: 99999999.99
|
.. .. additional_wildcard_cost | 必須* |
int float |
オーダーに追加された各追加ワイルドカードドメインのコスト を指定します (例. *.example.com)。 *このパラメータをサポートする製品のみに必要です。「製品別パラメータサポート」を参照してください。 最大: 99999999.99
|
製品が追加コストパラメータをサポートしていない場合 (additional_fqdn_cost
または additional_wildcard_cost
)、その製品に指定された値は無視されます。
製品名 ID |
additional_fqdn_cost をサポートしていますか?
|
additional_wildcard_cost をサポートしていますか?
|
---|---|---|
ssl_cloud_wildcard | — | はい |
ssl_plus | — | — |
ssl_multi_domain | はい | — |
ssl_wildcard | — | はい |
ssl_ev_plus | — | — |
ssl_ev_multi_domain | はい | — |
private_ssl_multi_domain | はい | — |
private_ssl_plus | — | — |
private_ssl_wildcard | — | はい |
client_digital_signature_plus | — | — |
client_digital_signature_plus_ad | — | — |
client_digital_signature_plus_sha2 | — | — |
client_email_security_plus | — | — |
client_email_security_plus_ad | — | — |
client_email_security_plus_sha2 | — | — |
client_authentication_plus | — | — |
client_authentication_plus_ad | — | — |
client_premium | — | — |
client_premium_ad | — | — |
client_premium_sha2 | — | — |
client_ltans_adobe_signing | — | — |
client_timestamp_authority | — | — |
private_client_premium | — | — |
client_authentication_only | — | — |
client_grid_premium | — | — |
client_grid_robot_email | — | — |
client_grid_robot_fqdn | — | — |
client_grid_robot_name | — | — |
grid_host_ssl | — | — |
client_multi_name | — | — |
grid_host_ssl_multi_domain | はい | — |
code_signing | — | — |
code_signing_ev | — | — |
document_signing_org_1 | — | — |
document_signing_org_2 | — | — |
document_signing_individual_1 | — | — |
document_signing_individual_2 | — | — |
client_authentication_only_non_repudiation | — | — |
class1_smime | — | — |
ssl_dv_geotrust | はい | — |
ssl_dv_rapidssl | — | — |
ssl_ev_geotrust_truebizid | はい | — |
ssl_ev_thawte_webserver | はい | — |
ssl_geotrust_truebizid | はい | はい |
client_premium_data_encipherment | — | — |
client_premium_non_repudiation | — | — |
ssl_thawte_webserver | はい | はい |
wildcard_dv_geotrust | — | はい |
wildcard_dv_rapidssl | — | — |
cloud_dv_geotrust | — | はい |
ssl_ev_securesite | — | — |
ssl_ev_securesite_multi_domain | はい | — |
ssl_ev_securesite_pro | はい | — |
ssl_securesite | — | — |
ssl_securesite_multi_domain | はい | — |
ssl_securesite_pro | はい | はい |
ssl_securesite_wildcard | — | はい |