Skip to main content

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

StringThis resource is used to represent the collection of certificate locations for a Redfish implementation.

Links

ObjectExpanded.
 

Certificates

Array

Items: link

Item count: N

  

Certificates[N]

Link

The value of this property is a URI reference to a resource of the certificate.

Status code

HTTP Status CodeError Message ID
500InternalError

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