Create trust anchor
- Print
- PDF
Create trust anchor
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Create a trust anchor.
API
- POST /trust-anchors
Request
Body
{
"name": "string",
"description": "string",
"enabled": boolean,
"source": {
"sourceType": "string",
"sourceData": {
"caId": integer
}
}
}
Field name | Required | Type | Restrictions | Description |
---|---|---|---|---|
name | Y | string | Trust anchor name | |
description | N | string | Trust anchor description | |
enabled | N | boolean | false if not entered | Trust activation status |
source | Y | object | Information of CA to register to the trust anchor | |
source.sourceType | Y | string | NCP_PCA | Trust anchor type (NCP_PCA) |
source.sourceData | Y | object | If sourceType is NCP_, it includes caId | |
source.sourceData.caId | Y | integer | ID of NAVER Cloud Platform Private CA to register to the trust anchor |
Response
Body
{
"trustAnchorId": "string",
"trustAnchorNrn": "string",
"name": "string",
"description": "string",
"enabled": boolean,
"createTime": "string",
"updateTime": "string",
"source": {
"sourceType": "string",
"sourceData": {
"caId": integer
}
}
}
Field | Type | Description |
---|---|---|
trustAnchorId | string | Trust anchor ID |
trustAnchorNrn | string | NRN of the trust anchor |
name | string | Trust anchor name |
description | string | Trust anchor description |
enabled | boolean | Trust anchor activation status |
createTime | string | Creation time |
updateTime | string | Modification time |
source | object | Information on CA registered as trust anchor |
source.sourceType | string | Trust anchor CA type |
source.sourceData | object | Trust anchor CA data |
source.sourceData.caId | integer | ID of NAVER Cloud Platform Private CA registered to the trust anchor |
Was this article helpful?