Enable CRL
- Print
- PDF
Enable CRL
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in Classic and VPC
Enable a certificate revocation list (CRL) applied to a trust anchor.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
POST | /api/v1/trust-anchors/{trustAnchorId}/crls/{crlId}/enable |
Request headers
For information about the headers common to all Sub Account APIs, see Sub Account request headers.
Request path parameters
You can use the following path parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
trustAnchorId | String | Required | Trust anchor ID |
crlId | String | Required | CRL ID
|
Request example
The request example is as follows:
curl --location --request POST 'https://externalaccess.apigw.ntruss.com/api/v1/trust-anchors/39804315-****-****-****-b579024d8d12/crls/b97aff71-****-****-****-0bb2c9c5652f/enable' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Accept: application/json'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
crlId | String | - | CRL ID |
crlNrn | String | - | NAVER Cloud Platform resource identification value for CRL |
crlData | String | - | CRL file data |
enabled | Boolean | - | Status
|
name | String | - | CRL name |
trustAnchorNrn | String | - | NAVER Cloud Platform resource identification value for trust anchor |
createTime | String | - | Creation date and time
|
updateTime | String | - | Last modification date and time
|
Response status codes
For information about the HTTP status codes common to all Sub Account APIs, see Sub Account status codes.
Response example
The response example is as follows:
{
"crlId": "b97aff71-****-****-****-0bb2c9c5652f",
"crlNrn": "nrn:PUB:ExternalAccess::*******:Crl/b97aff71-****-****-****-0bb2c9c5652f",
"crlData": "{crlData}",
"enabled": true,
"name": "crl001",
"trustAnchorNrn": "nrn:PUB:ExternalAccess::*******:TrustAnchor/39804315-****-****-****-b579024d8d12",
"createTime": "2024-12-18T14:06:32.981+09:00",
"updateTime": "2024-12-18T14:23:46.875427041+09:00"
}
Was this article helpful?