Disable CRL

Prev Next

Available in Classic and VPC

Disable 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}/disable

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/disable' \
--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
  • true | false
    • true: enabled
    • false: disabled
name String - CRL name
trustAnchorNrn String - NAVER Cloud Platform resource identification value for trust anchor
createTime String - Creation date and time
  • ISO 8601 format
updateTime String - Last modification date and time
  • ISO 8601 format

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": false,
    "name": "crl001",
    "trustAnchorNrn": "nrn:PUB:ExternalAccess::*******:TrustAnchor/39804315-****-****-****-b579024d8d12",
    "createTime": "2024-12-18T14:06:32.981+09:00",
    "updateTime": "2024-12-18T14:24:12.697441295+09:00"
}