Create CRL
- Print
- PDF
Create CRL
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Create a CRL to be applied to a trust anchor.
API
- POST /trust-anchors/{trustAnchorId}/crls
Request
Path variables
Parameter | Required | Type | Restrictions | Description |
---|---|---|---|---|
trustAnchorId | Y | string | Trust anchor ID |
Body
{
"name": "string",
"crlData": "string",
"enabled": boolean
}
Request fields
Parameter | Required | Type | Restrictions | Description |
---|---|---|---|---|
name | Y | string | CRL name | |
crlData | Y | string | Base64-encoded binary data object | CRL file |
enabled | N | boolean | false if not entered | CRL activation status |
Response
Body
{
"crlId": "string",
"crlNrn": "string",
"crlData": "string",
"enabled": boolean,
"name": "string",
"trustAnchorNrn": "string",
"createTime": "string",
"updateTime": "string"
}
Response fields
Item | Type | Description |
---|---|---|
crlId | string | CRL ID |
crlNrn | string | CRL NRN |
crlData | string | CRL file data |
enabled | boolean | CRL activation status |
name | string | CRL name |
trustAnchorNrn | string | NRN of the trust anchor with CRL applied |
createTime | string | Creation time |
updateTime | string | Modification time |
Was this article helpful?