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 | - | 인증서 발급 요청 아이디 |
certificates |
Array | - | 인증서 목록 |
certificates
certificates에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
certificateNo |
Integer | - | 인증서 번호 |
certificateName |
String | - | 인증서 이름 |
memberNo |
String | - | 네이버 클라우드 플랫폼 사용자 회원 번호 |
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 | - | 인증서 DN(Distinguished Name) 정보 |
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)"
}
]
}
]
}