certOwnerId | String The internal partner ID of the certificate owner. For signing and verifying certificates, specify the internal partner ID of the sender. For decryption and encryption certificates, specify the internal partner ID of the receiver. | |
oldCertInfo | Document The existing certificate information to replace. The document contains the following variables: | |
Key | Description | |
privateKey | Object (optional) A byte array that represents the private key to be replaced. | |
cert | Object (optional) A byte array that represents the certificate to be replaced. | |
CACerts | Object (optional) An array of byte arrays, each of which represents a CA Certificate to be replaced, in node-to-root order. | |
chainBytes | Object (optional) An array of byte arrays. The first byte array in the array represents cert. The remaining bytes represent CACerts (in the same node-to-root order). Note: If chainBytes is specified, cert and CACerts values are ignored. If chainBytes is null, both cert and CACerts values are required. | |
newCertInfo | Document The new certificate information for certOwnerId.The document contains the following variables: | |
Key | Description | |
privateKey | Object A byte array that represents the new private key. | |
cert | Object A byte array that represents the new certificate. | |
CACerts | Object An array of byte arrays, each of which represents the CA Certificate, in node-to-root order. | |
chainBytes | Object (optional) An array of byte arrays. The first byte array in the array represents cert. The remaining bytes represent CACerts (in the same node-to-root order). Note: If chainBytes is specified, cert and CACerts values are ignored. If chainBytes is null, both cert and CACerts values are required. |
errors | String List (optional) Any errors that occurred while updating the certificate information. Each string in the string list is a separate error that was encountered. The errors variable is not in the pipeline if no errors were found. |