Available in Classic and VPC
Get details of a provisioned certificate.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/certificate/provisioning/{slotId} |
Request headers
For information about the headers common to all Global Edge APIs, see Global Edge request headers.
Request path parameters
You can use the following path parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
slotId |
Long | Required | Certificate slot ID
|
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
pageNo |
Integer | Optional | Page number
|
offset |
Integer | Optional | Number of items per page
|
Request example
The request example is as follows:
curl --location --request GET 'https://edge.apigw.ntruss.com/api/v1/certificate/provisioning/68' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
slotId |
Long | - | Certificate slot ID |
certificates |
Array | - | Certificate information: Certificate |
linkedEdges |
Object | - | List of connected edges |
linkedEdges.content |
Array | - | Edge information: LinkedEdge |
linkedEdges.pageable |
Object | - | Paging information |
linkedEdges.pageable.pageNo |
Integer | - | Page number |
linkedEdges.pageable.offset |
Integer | - | Number of items per page |
linkedEdges.pageable.totalCount |
Integer | - | Number of connected edges |
Certificate
The following describes Certificate
.
Field | Type | Required | Description |
---|---|---|---|
itemId |
Long | - | Certificate unique number
|
serviceRegion |
String | - | Certificate application scope
|
cmCertificateName |
String | - | Certificate name |
commonName |
String | - | Domain name |
sanDomains |
Array | - | List of additional domains
|
serialNumber |
String | - | Serial number |
expirationDate |
String | - | Expiration date and time
|
LinkedEdge
The following describes LinkedEdge
.
Field | Type | Required | Description |
---|---|---|---|
profileName |
String | - | Profile name |
edgeName |
String | - | Edge name |
serviceDomain |
String | - | Service domain name |
edgeStatus |
String | - | Edge status
|
modificationDate |
String | - | Last change date and time
|
Response status codes
For information about the HTTP status codes common to all Global Edge APIs, see Global Edge response status codes.
Response example
The response example is as follows:
{
"code": "0000",
"message": "Success",
"result": {
"slotId": 68,
"certificates": [
{
"itemId": 130,
"serviceRegion": "KR_JP",
"cmCertificateName": "cert*******l",
"commonName": "h************.kr",
"sanDomains": [],
"serialNumber": "98:72:ff:**:**:**:**:**:**:**:**:**:**:**:36:03",
"expirationDate": "2025-11-05T23:59:59Z"
}
],
"linkedEdges": {
"content": [
{
"profileName": "testpro",
"edgeName": "e102",
"serviceDomain": "h************.kr",
"edgeStatus": "PUBLISHING",
"modificationDate": "2025-08-07T04:21:06.965Z"
}
],
"pageable": {
"pageNo": 1,
"offset": 15,
"totalCount": 1
}
}
}
}