Classic/VPC 환경에서 이용 가능합니다.
신청할 수 있는 인증서 타입을 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
| 메서드 | URI |
|---|---|
| GET | /certificate/certificateTypes |
요청 헤더
Certificate Manager API에서 공통으로 사용하는 헤더에 대한 정보는 Certificate Manager 공통 헤더를 참조해 주십시오.
요청 예시
요청 예시는 다음과 같습니다.
curl --location --request GET 'https://certificatemanager.apigw.ntruss.com/api/v2/certificate/certificateTypes' \
--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 | - | 조회된 목록의 총 개수 |
certificatetype |
Array | - | 인증서 타입 목록 |
certificatetype
certificatetype에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
name |
String | - | 인증서 타입 이름 |
pricingPlan |
String | - | 인증서 요금제
|
validationLevel |
String | - | 인증서 도메인 소유권(DCV) 검증 수준
|
validity |
Integer | - | 인증서 유효 기간(일) |
ca |
String | - | 인증서 발급 기관(CA) |
csrRequired |
String | - | CSR 필수 여부
|
certificateTypeCode |
String | - | 인증서 타입 코드
|
응답 상태 코드
Certificate Manager API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Certificate Manager 공통 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
{
"returnCode": "0",
"returnMessage": "Success",
"totalCount": 4,
"certificatetype": [
{
"name": "Cloud Basic DV",
"pricingPlan": "FREE",
"validationLevel": "Domain Validation Certificate",
"validity": 395,
"ca": "NAVER Cloud Trust Services",
"csrRequired": "N",
"certificateTypeCode": "NCP_FREE_DV_01"
},
{
"name": "Advanced DV",
"pricingPlan": "PAID",
"validationLevel": "Domain Validation Certificate",
"validity": 365,
"ca": "NAVER Cloud Trust Services",
"csrRequired": "Y",
"certificateTypeCode": "NCP_PAID_DV_01"
},
{
"name": "Advanced OV",
"pricingPlan": "PAID",
"validationLevel": "Organization Validation Certificate",
"validity": 365,
"ca": "NAVER Cloud Trust Services",
"csrRequired": "Y",
"certificateTypeCode": "NCP_PAID_OV_01"
},
{
"name": "Global Edge Dedicated DV",
"pricingPlan": "PAID",
"validationLevel": "Domain Validation Certificate",
"validity": 90,
"ca": "Let's Encrypt",
"csrRequired": "N",
"certificateTypeCode": "NCP_GLOBAL_EDGE_DEDICATED"
}
]
}