CryptoExport
Trigger this action to create an export package that contains a certificate.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default, specifying
a request payload with the following
format:{
"CryptoExport": {
"ObjectType": "type",
"ObjectName": "object",
"OutputFilename": "file",
"Mechanism": "format"
}
}- ObjectType
- String
- ObjectName
- String
- OutputFilename
- String
Example
To export a certificate named iop_mgmt_cert to the file exportedthecert.xml,
post the following payload to https://yourhost:5554/mgmt/actionqueue/default:
{
"CryptoExport": {
"ObjectType": "certificate",
"ObjectName": "iop_mgmt_cert",
"OutputFilename": "temporary:///exportedthecert.xml"
}
}