Available in Classic and VPC
Get Advanced DV and Advanced OV certificates you currently own.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /api/v2/certificate/getPaidCertificates |
Request headers
For information about the headers common to all Certificate Manager APIs, see Certificate Manager request headers.
Request example
The request example is as follows:
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'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
returnCode |
String | - | Response code |
returnMessage |
String | - | Response message |
totalCount |
Integer | - | Total number of lists searched |
orders |
Array | - | Certificate issuance request list: orders |
orders
The following describes orders.
| Field | Type | Required | Description |
|---|---|---|---|
orderID |
String | - | Certificate issuance request ID |
certificates |
Array | - | Certificate list: certificates |
certificates
The following describes certificates.
| Field | Type | Required | Description |
|---|---|---|---|
certificateNo |
Integer | - | Certificate number |
certificateName |
String | - | Certificate name |
memberNo |
String | - | NAVER Cloud Platform user member ID |
commonName |
String | - | Domain to be included in the certificate CN (Common Name) |
dnsName |
String | - | List of domains to be included in the certificate SAN (Subject Alternative Name) |
statusCode |
String | - | Certificate status code
|
statusName |
String | - | Certificate status
|
certificateTypeCode |
String | - | Certificate type code
|
domainCode |
String | - | Issuance-based domain
|
updateDate |
String | - | Last change date and time
|
issueType |
String | - | Issuance status: Use to verify whether the certificate can be reissued.
|
subjectDN |
String | - | Certificate distinguished name (DN) information |
registDate |
String | - | Certificate registration date and time
|
notAfter |
String | - | Certificate expiration date and time
|
Response status codes
For information about the HTTP status codes common to all Certificate Manager APIs, see Certificate Manager response status codes.
Response example
The response example is as follows:
{
"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)"
}
]
}
]
}