This action makes a certificate signing request.
Privilege: ConfigureManager, Login
NOTE: Only a single instance of generated CSR is allowed to be signed
and uploaded into iDRAC. If multiple certifcates are generated then ensure
that the latest WEB SSL certificate is signed and uploaded to iDRAC.
NOTE: For PNAC certificates, use the GenerateCSRAndImport action.
URI:/redfish/v1/CertificateService/Actions/Oem/DellCertificateService.GenerateCSRAndImport
NOTE: If generate CSR operation takes longer than 30 seconds,
a 503 Service Unavailable status is returned. Ensure that you wait for
some time before beginning the CSR download operation.
Following parameters are supported for GenerateCSR action:
X-Auth-Token: ********************username:passwordAuthorization: Basic *****************curl --location '/redfish/v1/CertificateService/Actions/CertificateService.GenerateCSR' \
--header 'X-Auth-Token: <api-key>' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"AlternativeNames": [],
"CertificateCollection": {
"@odata.id": "/redfish/v1/Managers/iDRAC.Embedded.1/Oem/Dell/RemoteSystemLogs/HTTPS/Certificates"
},
"City": "Bang",
"CommonName": "C",
"Country": "IN",
"Organization": "Dell",
"OrganizationalUnit": "I",
"State": "Kar"
}'{}