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
Always "certificate".
ObjectName
String
The name of the certificate to export.
OutputFilename
String
Specify the name of the export package. This file will contain the exported cryptographic object.

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"
  }
}