|
契約更新(renew)を実施しますと、新しい注文番号が発行されます。
新しい注文番号はValueSSL会員ページにログインして確認することができます。
ACME自動注文においては、ご利用のサーバ環境から以下のコマンドで自動取得できます。
(例)Requests
curl -X POST https://valuessl.net/api/digicert/ -H 'Content-Type: application/json' -d '{"AccessName":"AAAAAAAA", "AccessKey":"BBBBBBBBBBBBBBBBBBBBBB", "action":"RenewCheck", "orderId":7777777}'
(例)Responses(成功時)
{
"orderId":777777777,"renewed_orderId":888888888
}
(例)Responses(失敗時))
{
"error_message":"Error(152468231) orderId is failed."
}
■Request parameters
Name
|
必須/任意 |
Type |
説明 |
AccessName
|
必須 |
string |
会員ID |
AccessKey
|
必須 |
string |
APIKey |
action
|
必須 |
string |
RenewCheck |
orderId
|
必須 |
int |
更新前の注文番号 |
■Response parameters(成功時)
Name
|
Type |
説明 |
orderId
|
int |
更新前の注文番号 |
renewed_orderId
|
int |
更新後の注文番号 |
■Response parameters(失敗時)
Name
|
Type |
値 |
error_message
|
string |
Error(152468231) orderId is failed. |
|