GET – Certificate locations properties
Use the GET method to retrieve properties in CertificateLocations resource for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/CertificateService/CertificateLocations
Request body
None
Response body
Field | Type | Description |
---|---|---|
Id | String | “CertificateLocations” |
Name | String | "Certificate Locations" |
Description | String | This resource is used to represent the collection of certificate locations for a Redfish implementation. |
CertificateLocations | Link | The information about the location of certificates. |
Links | Object | Expanded. |
Certificates | Array | An array of links to the certificates installed on this service. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"Id": "CertificateLocations",
"@odata.type": "#CertificateLocations.v1_0_2.CertificateLocations",
"@odata.id": "/redfish/v1/CertificateService/CertificateLocations",
"@odata.etag": "\"362ae2eb99a12a2722d\"",
"Links": {
"Certificates": [
{
"@odata.id": "/redfish/v1/Managers/1/NetworkProtocol/HTTPS/Certificates/1"
}
]
},
"Name": "Certificate Locations",
"Description": "This resource is used to represent the collection of certificate locations for a Redfish implementation."
}
Give documentation feedback