Secure Key Manager provides various APIs to access user data. Clients must be authenticated via key store to get access to data stored in Secure Kay Manager.
In v1.2, required HTTP header fields related to user authentication have been added, and the feature to add or delete keys using APIs added.
https://api-keymanager.nhncloudservice.com
Method | URI | Description |
---|---|---|
GET | /keymanager/v1.2/appkey/{appkey}/confirm | Provide information of the client that called API. |
GET | /keymanager/v1.2/appkey/{appkey}/secrets/{keyid} | Query confidential data stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/encrypt | Encrypt data with the symmetric key stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/decrypt | Decrypt data with the symmetric key stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/create-local-key | Create AES-256 symmetric keys that can be used by a client for data encryption/decryption in local environment. |
GET | /keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/symmetric-key | Query the symmetric key stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/sign | Sign data with the asymmetric key stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/verify | Verify data and signature with the asymmetric key stored in Secure Key Manager. |
GET | /keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/privateKey | Query the private key stored in Secure Key Manager. |
GET | /keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/publicKey | Query the public key stored in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/keys/{secrets|symmetric-keys|asymmetric-keys}/create | Add a new key to Secure Key Manager. |
PUT | /keymanager/v1.2/appkey/{appkey}/keys/{keyid}/delete | Request deletion of a key stored in Secure Key Manager. |
DELETE | /keymanager/v1.2/appkey/{appkey}/keys/{keyid} | Immediately delete the key scheduled for deletion in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/auths/{ipv4s|macs|certificates} | Add credentials to Secure Key Manager. |
PUT | /keymanager/v1.2/appkey/{appkey}/auths/{ipv4s|macs|certificates}/delete | Request deletion of credentials in Secure Key Manager. |
POST | /keymanager/v1.2/appkey/{appkey}/auths/{ipv4s|macs|certificates}/delete | Immediately delete credentials in Secure Key Manager. |
[HTTP Header of API Request]
To use MAC address authentication of Secure Key Manager, you must make a request by setting the client's MAC address in the HTTP header.
X-TOAST-CLIENT-MAC-ADDR: {MAC Address}
In v1.2, essential fields will be added to the HTTP header.
X-TC-AUTHENTICATION-ID: {User Access Key ID}
X-TC-AUTHENTICATION-SECRET: {Secret Access Key}
For more information, please see the console user guide.
[Path Variables of API Request]
Name | Type | Description |
---|---|---|
appkey | String | Appkey of the NHN Cloud project where the data in need is stored |
keyid | String | Identifier of data in need |
[Common Data Header of API Response]
{
"header": {
"resultCode": 0,
"resultMessage": "success",
"isSuccessful": true
},
"body": {
...
}
}
Name | Type | Description |
---|---|---|
resultCode | Number | Result code value of API call |
resultMessage | String | Result message of API call |
isSuccessful | Boolean | Whether API call is successful or not |
This API is used to query information of the client that called API.
GET https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/confirm
[Response Body]
{
"header": {
...
},
"body": {
"clientIp": "0.0.0.0",
"clientMacHeader": "00:00:00:00:00:00",
"clientSentCerfificate": false
}
}
Name | Type | Description |
---|---|---|
clientIp | String | IP address of the client that called API |
clientMacHeader | String | Header value of MAC address of the client that called API |
clientSentCertificate | Boolean | Whether the client that called API is using certificate or not |
This API is used to query confidential data stored in Secure Key Manager.
GET https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/secrets/{keyid}
[Response Body]
{
"header": {
...
},
"body": {
"secret": "data"
}
}
Name | Type | Description |
---|---|---|
secret | String | Query result of confidential data |
This API is used to encrypt data with the symmetric key created in Secure Key Manager. A user can pass 32KB or smaller text data, and the data can be encrypted with the symmetric key stored in Secure Key Manager.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/encrypt
[Request Body]
{
"plaintext": "data"
}
Name | Type | Description |
---|---|---|
plaintext | String | Data to be encrypted with the symmetric key |
[Response Body]
{
"header": {
...
},
"body": {
"ciphertext": "AAAAABzGwQniNneKXmcOLhWnxEqC1rNY+UdVb3lyeX/4wSrP",
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
ciphertext | String | Result of data encryption with the symmetric key |
keyVersion | Number | Version of the symmetric key used for processing the API request |
This API is used to decrypt data with the symmetric key created in Secure Key Manager. A use can pass encrypted text, and the text data can be decrypted with the symmetric key stored in Secure Key Manager.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/decrypt
[Request Body]
{
"ciphertext": "AAAAABzGwQniNneKXmcOLhWnxEqC1rNY+UdVb3lyeX/4wSrP"
}
Name | Type | Description |
---|---|---|
ciphertext | String | Data to be decrypted with the symmetric key |
[Response Body]
{
"header": {
...
},
"body": {
"plaintext": "data",
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
plaintext | String | Result of data decryption with the symmetric key |
keyVersion | Number | Version of the symmetric key used for processing the API request |
This API is used to create AES-256 symmetric keys that a client can use in local environment. localKeyPlaintext is a base64-encoded form of the generated symmetric key, and it is readily available after base64 decoding. localKeyCiphertext is a base64-encoded form of the generated symmetric key encrypted with the symmetric key stored in Secure Key Manager, and it is used to store data in a storage. The symmetric key stored in storage can be used after being decrypted by using the decryption API.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/create-local-key
[Response Body]
{
"header": {
...
},
"body": {
"localKeyPlaintext": "srV7MWkYIfYBknkASzwSEK1Z1y9Nx0f/RMZ3MSVIjm8=",
"localKeyCiphertext": "v1s1WkiIj3KR+AafnupNv9xcX/JhL4GUzUr8mzLRpjbGuoAwU/GgboM/6QdRRY24",
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
localKeyPlaintext | String | Base64-encoded AES-256 symmetric key |
localKeyCiphertext | String | Base64-encoded AES-256 symmetric key encrypted with the symmetric key stored in Secure Key Manager |
keyVersion | Number | Version of the symmetric key used for processing the API request |
Users can query the symmetric key (AES-256) stored in Secure Key Manager.
GET https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/symmetric-keys/{keyid}/symmetric-key?keyVersion={keyVersion}
[Request Parameter]
Name | Type | Description |
---|---|---|
keyVersion | Number | Version of the symmetric key to query |
[Response Body]
{
"header": {
...
},
"body": {
"symmetricKey": "0x00, 0x20, 0x00, 0x41, 0x00, 0x20, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x20, 0x00, 0x4a, 0x00, 0x61, 0x00, 0x76, 0x00, 0x61, 0x00, 0x2e, 0x00, 0x20",
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
symmetricKey | String | Symmetric key data (Hex string form) |
keyVersion | Number | Version of the symmetric key used for processing the API request |
This API is used to sign data with the asymmetric key created in Secure Key Manager. Users can pass 245 Byte or smaller text data, and the data is signed with the asymmetric key stored in Secure Key Manager.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/sign
[Request Body]
{
"plaintext": "data"
}
Name | Type | Description |
---|---|---|
plaintext | String | Data to sign with the asymmetric key |
[Response Body]
{
"header": {
...
},
"body": {
"signature": "AAAAAGI9zf831DX...",
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
signature | String | Signature value of signing the data with the asymmetric key |
keyVersion | Number | Version of the asymmetric key used for processing the API request |
This API is used to verify data with the asymmetric key created in Secure Key Manager. Users can pass data and signature value, and use asymmetric keys stored in Secure Key Manager to verify that data has not been forged.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/verify
[Request Body]
{
"plaintext": "data",
"signature": "AAAAAGI9zf831DX..."
}
Name | Type | Description |
---|---|---|
plaintext | String | Data to be verified with the asymmetric key |
signature | String | Signature value of signing the data with the asymmetric key |
[Response Body]
{
"header": {
...
},
"body": {
"result": true,
"keyVersion": 1
}
}
Name | Type | Description |
---|---|---|
result | Boolean | Result of verifying data and signature value with the asymmetric key |
keyVersion | Number | Version of the asymmetric key used for processing the API request |
Users can query the private key among the asymmetric keys stored in Secure Key Manager.
GET https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/privateKey?keyVersion={keyVersion}
[Request Parameter]
Name | Type | Description |
---|---|---|
keyVersion | Number | Version of the asymmetric key to query |
[Response Body]
{
"header": {
...
},
"body": {
"keyType": "PrivateKey",
"key": "0x30, 0x82, 0x04, 0xbe, 0x02, 0x01, 0x00, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x04, 0x82, 0x04, 0xa8, 0x30, 0x82, 0x04, 0xa4, 0x02, 0x01, 0x00, 0x02, 0x82, 0x01, 0x01, 0x00, 0x8b, 0x07, 0x8e, 0xda, 0xc7, 0x83, 0x95, 0xc8, 0x43, 0xa7, 0xb8, 0x31, 0x6f, 0xf6, 0x25, 0x36, 0x89, 0x64, 0xc5, 0x38, 0x75, 0x4b, 0xa6, 0x80, 0xfe, 0x7c, 0xc5, 0x6a, 0x94, 0xf2,
... ",
"encodedKey": "MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCLB47ax4OVyEOnuDFv9iU2iWTFOHVLpoD+fMVqlPJiiuJSwi5x/zd3LojWuUyr+dZ9Icxl23Alu4GwwKgUi4DL8qo8jD14THJoeUgIZ56wmYMvN+CkNnmkyqcGn6yT+AXtBJVGqS/2lssHLIGELi8XXkWdf6OBfig6HgsJAnix8Z+T/QdikEFUI5ZiuUWyHw2Bag9B4CoPF2EgXfu5HcW4GA4KH2PI92O4vNg8AmFVDk2E+ma2quSau7LjS3KY9s3Sq+JqvTPZmqHQJudv9ZYcnbyDG/
... ",
"keyVersion": 0
}
}
Name | Type | Description |
---|---|---|
keyType | String | Asymmetric key form |
key | String | Private key data (Hex string form) |
encodedKey | String | Private key data (Base64-encoded form) |
keyVersion | Number | Version of asymmetric key used for processing API requests |
Users can query the public key among the asymmetric keys stored in Secure Key Manager, regardless of authentication.
GET https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/asymmetric-keys/{keyid}/publicKey?keyVersion={keyVersion}
[Request Parameter]
Name | Type | Description |
---|---|---|
keyVersion | Number | Version of asymmetric key to query |
[Response Body]
{
"header": {
...
},
"body": {
"keyType": "PublicKey",
"key": "0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x8b, 0x07, 0x8e, 0xda, 0xc7, 0x83, 0x95, 0xc8, 0x43, 0xa7, 0xb8, 0x31, 0x6f, 0xf6, 0x25, 0x36, 0x89, 0x64, 0xc5, 0x38, 0x75, 0x4b, 0xa6, 0x80, 0xfe, 0x7c, 0xc5, 0x6a, 0x94, 0xf2, 0x62, 0x8a, 0xe2, 0x52, 0xc2,
... ",
"encodedKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiweO2seDlchDp7gxb/YlNolkxTh1S6aA/nzFapTyYoriUsIucf83dy6I1rlMq/nWfSHMZdtwJbuBsMCoFIuAy/KqPIw9eExyaHlICGeesJmDLzfgpDZ5pMqnBp+sk/gF7QSVRqkv9pbLByyBhC4vF15FnX+jgX4oOh4LCQJ4sfGfk/0HYpBBVCOWYrlFsh8NgWoPQeAqDxdhIF37uR3FuBgOCh9jyPdjuLzYPAJhVQ5NhPpmtqrkmruy40tymPbN0qviar0z2Zqh0Cbnb/WWHJ28gxv+d+iJCXJvm+fIg7hRYJ5C+mun/N6FB8QHv/
... ",
"keyVersion": 0
}
}
Name | Type | Description |
---|---|---|
keyType | String | Asymmetric key form |
key | String | Public key data (Hex string form) |
encodedKey | String | Public key data (Base64-encoded form) |
keyVersion | Number | Version of asymmetric key used for processing API requests |
Add a new key to Secure Key Manager.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/keys/secrets/create
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Key Sample #1",
"description" : "Description #1",
"secretValue" : "data"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name where key is saved |
name | String | Key name |
description | String | Key description |
secretValue | String | Confidential data value |
[Response Body]
{
"header": {
...
},
"body": {
"keyId": "071dcc5c25614dffa52357e5cae3471f",
"keyStatus": "ACTIVE"
}
}
Name | Type | Description |
---|---|---|
keyId | String | Created key ID |
keyStatus | String | Key status message |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/keys/symmetric-keys/create
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Key Sample #2",
"description" : "Description #2",
"autoRotationPeriod" : 0
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name where key is saved |
name | String | Key name |
description | String | Key description |
autoRotationPeriod | Integer | Rotation period |
[Response Body]
{
"header": {
...
},
"body": {
"keyId": "c2c49d986dfb4ca6afeaf67c39354c12",
"keyStatus": "ACTIVE"
}
}
Name | Type | Description |
---|---|---|
keyId | String | Created key ID |
keyStatus | String | Key status message |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/keys/asymmetric-keys/create
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Key Sample #2",
"description" : "Description #2",
"autoRotationPeriod" : 0
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name where key is saved |
name | String | Key name |
description | String | Key description |
autoRotationPeriod | Integer | Rotation period |
[Response Body]
{
"header": {
...
},
"body": {
"keyId": "ddd7d5275dfa462799418062bd25b49d",
"keyStatus": "ACTIVE"
}
}
Name | Type | Description |
---|---|---|
keyId | String | Created key ID |
keyStatus | String | Key status message |
You can change the status of a key stored in Secure Key Manager to To be deleted, or delete it immediately.
Change the key status to To be deleted. The key is automatically deleted after 7 days, and you can't view a key in the To be deleted status.
PUT https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/keys/{keyid}/delete
[Response Body]
{
"header": {
...
},
"body": {
"keyId": "071dcc5c25614dffa52357e5cae3471f",
"deletionDateTime": "2023-11-20T22:00:00.00"
}
}
Name | Type | Description |
---|---|---|
keyId | String | Created key ID |
deletionDateTime | String | Date when key is to be deleted |
The key that is to be deleted immediately can only be deleted immediately in the status of To be deleted. You cannot immediately delete a key that is activated.
DELETE https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/keys/{keyid}
[Response Body]
{
"header": {
...
},
"body": {
"keyId": "071dcc5c25614dffa52357e5cae3471f",
"deletionDateTime": "2023-11-14T10:05:24.312"
}
}
Name | Type | Description |
---|---|---|
keyId | String | Created key ID |
deletionDateTime | String | Time when key is deleted |
To protect user data, Secure Key Manager provides the following authentication methods: IPv4 address authentication to verify the client's IPv4 address, MAC address authentication to verify the client's MAC address, and client certificate authentication to verify the certificate the client uses to communicate.
You can add credentials to Secure Key Manager.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/ipv4s
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "127.0.0.1",
"description" : "Description #1",
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Name of the key store to store IPv4 addresses in |
value | String | IPv4 address value |
description | String | IPv4 address description |
[Response Body]
{
"header": {
...
},
"body": {
"value": "127.0.0.1",
"description": "Description #1"
}
}
Name | Type | Description |
---|---|---|
value | String | Created IPv4 address value |
description | String | Created IPv4 address description |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/macs
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "aa:aa:aa:aa:aa:aa",
"description" : "Description #1",
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to store MAC addresses |
value | String | MAC address value |
description | String | MAC address description |
[Response Body]
{
"header": {
...
},
"body": {
"value": "aa:aa:aa:aa:aa:aa",
"description": "Description #1"
}
}
Name | Type | Description |
---|---|---|
value | String | Created MAC address value |
description | String | Created MAC address description |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/certificates
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Certificate Name #1",
"password" : "Password",
"lifeTime" : 365
"description" : "Description #1",
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name where the certificate is stored |
name | String | Certificate name |
password | String | Certificate password |
lifeTime | int | Certificate use period (in days) |
description | String | Certificate description |
[Response Body]
{
"header": {
...
},
"body": {
"name": "Certificate Name #1",
"description": "Description #1"
}
}
Name | Type | Description |
---|---|---|
value | String | Created certificate name |
description | String | Created certificate description |
You can change the status of credentials stored in Secure Key Manager to To be deleted, or delete it immediately.
Change the credentials status to To be deleted. The credentials is automatically deleted after 7 days, and you can't use the credentials in the To be deleted status.
PUT https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/ipv4s/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "127.0.0.1"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to request the deletion of IPv4 address |
value | String | IPv4 address value to request deletion |
[Response Body]
{
"header": {
...
},
"body": {
"value": "127.0.0.1",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | IPv4 address value that requested deletion |
deletionDateTime | String | Scheduled deletion time for IPv4 address |
PUT https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/macs/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "aa:aa:aa:aa:aa:aa"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to request the deletion of MAC address |
value | String | MAC address value to request deletion |
[Response Body]
{
"header": {
...
},
"body": {
"value": "aa:aa:aa:aa:aa:aa",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | MAC address value that requested deletion |
deletionDateTime | String | Scheduled deletion time for MAC address |
PUT https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/certificates/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Certificate Name #1"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to request the deletion of certificate |
name | String | Certificate name to request deletion |
[Response Body]
{
"header": {
...
},
"body": {
"name": "Certificate Name #1",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | Certificate name that requested deletion |
deletionDateTime | String | Scheduled deletion time for the certificate |
The key that is to be deleted immediately can only be deleted immediately in the status of To be deleted. You cannot immediately delete a key that is activated.
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/ipv4s/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "127.0.0.1"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to immediately delete IPv4 address |
value | String | IPv4 address value to immediately delete |
[Response Body]
{
"header": {
...
},
"body": {
"value": "127.0.0.1",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | Deleted IPv4 address value |
deletionDateTime | String | Deletion time for IPv4 address |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/macs/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"value" : "aa:aa:aa:aa:aa:aa"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to immediately delete MAC address |
value | String | MAC address value to immediately delete |
[Response Body]
{
"header": {
...
},
"body": {
"value": "aa:aa:aa:aa:aa:aa",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | Deleted MAC address value |
deletionDateTime | String | Deletion time for MAC address |
POST https://api-keymanager.nhncloudservice.com/keymanager/v1.2/appkey/{appkey}/auths/certificates/delete
[Request Body]
{
"keyStoreName" : "Store #1",
"name" : "Certificate Name #1"
}
Name | Type | Description |
---|---|---|
keyStoreName | String | Key store name to immediately delete certificate |
name | String | Certificate name to delete immediately |
[Response Body]
{
"header": {
...
},
"body": {
"name": "Certificate Name #1",
"deletionDateTime": "2024-03-14T11:00:00"
}
}
Name | Type | Description |
---|---|---|
value | String | Deleted certificate name |
deletionDateTime | String | Deletion time for the certificate |