Classic/VPC環境で利用できます。
保有している Advanced DV、Advanced OV証明書を照会します。
リクエスト
リクエスト形式を説明します。リクエスト形式は次の通りです。
| メソッド | URI |
|---|---|
| GET | /certificate/getPaidCertificates |
リクエストヘッダ
Certificate Manager APIで共通して使用されるヘッダの詳細は、Certificate Managerの共通ヘッダをご参照ください。
リクエスト例
リクエストのサンプルコードは次の通りです。
curl --location --request GET 'https://certificatemanager.apigw.ntruss.com/api/v2/certificate/certificates' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json' \
--header 'accept: application/json'
レスポンス
レスポンス形式を説明します。
レスポンスボディ
レスポンスボディの説明は次の通りです。
| フィールド | タイプ | 必須の有無 | 説明 |
|---|---|---|---|
returnCode |
String | - | レスポンスコード |
returnMessage |
String | - | レスポンスメッセージ |
totalCount |
Integer | - | 照会されたリストの総数 |
orders |
Array | - | 証明書発行リクエストリスト |
orders
ordersの説明は次の通りです。
| フィールド | タイプ | 必須の有無 | 説明 |
|---|---|---|---|
orderID |
String | - | 証明書発行リクエスト ID |
certificates |
Array | - | 証明書リスト |
certificates
certificatesの説明は次の通りです。
| フィールド | タイプ | 必須の有無 | 説明 |
|---|---|---|---|
certificateNo |
Integer | - | 証明書番号 |
certificateName |
String | - | 証明書名 |
memberNo |
String | - | NAVERクラウドプラットフォームユーザーの会員番号 |
commonName |
String | - | 証明書の CN(Common Name)に含まれるドメイン |
dnsName |
String | - | 証明書 SAN(Subject Alternative Name)に含まれるドメインリスト |
statusCode |
String | - | 証明書の状態コード
|
statusName |
String | - | 証明書の状態
|
certificateTypeCode |
String | - | 証明書タイプコード
|
domainCode |
String | - | 発行環境のドメイン
|
updateDate |
String | - | 最終更新日時
|
issueType |
String | - | 発行状態: その証明書を利用した再発行が可能かを確認するために使用
|
subjectDN |
String | - | 証明書の Distinguished Name(DN)情報 |
registDate |
String | - | 証明書の登録日時
|
notAfter |
String | - | 証明書の有効期限
|
レスポンスステータスコード
Certificate Manager APIで共通して使用されるレスポンスステータスコードの詳細は、Certificate Managerの共通レスポンスステータスコードをご参照ください。
レスポンス例
レスポンスのサンプルコードは次の通りです。
{
"returnCode": "0",
"returnMessage": "Success",
"totalCount": 1,
"orders": [
{
"orderId": "900001",
"certificates": [
{
"certificateNo": 100001,
"certificateName": "sample-cert-01",
"memberNo": "9999999",
"commonName": "example.com",
"statusCode": "0",
"statusName": "Ongoing",
"certificateType": "NCP_PAID_OV_01",
"domainCode": "PUB",
"updateDate": "2026-03-01 10:15:30(UTC+09:00)",
"orderId": "900001",
"issueType": "ORIGINAL",
"subjectDN": "cn=example.com,o=Example Corporation,l=Sample-city,s=Sample-state,c=KR",
"registDate": "2026-03-01 10:15:30(UTC+09:00)",
"notAfter": "2027-03-01 23:59:59(UTC+09:00)"
}
]
}
]
}