Reference Guide
"description_l10n":"Bus 0 enclosure 0 LCCA is initializing."
},
{
"id":"37583ff1-b0fe-41f2-9b3d-e5e5d2e5e525",
"severity":"Info",
"description_l10n":"The remote system <undefined> volume discovery or
refresh has failed."
}
]
Retrieving data for a specified resource instance
To retrieve data for a specified resource instance, use the following request components:
Headers
Accept: application/json
Authorization: <auth_cookie>
Operation
GET
URI
pattern
/api/rest/<resource_type>/<id>
where:
● <resource_type> is the resource type of the desired instance.
● <id> is the unique identifier of the desired instance.
For additional functionality, such as returning specific attributes, you can append one or more request parameters
to the URI.
Body Empty.
If the request succeeds, the server returns a 200 OK HTTP status code and an instance resource in the response body. If the
request does not succeed, the server returns a 4xx or 5xx HTTP status code and a message entity in the response body.
By default, the response to a GET instance request includes only the unique identifier (id attribute) of the specified resource
instance. You can use the following request parameters to customize what data is returned:
Request parameter
Description
select
Requests data for a specified set of attributes.
Example
The following request returns the values for the id, name, and serial_number attributes for the appliance resource
instance that has an id of J8WRPD2.
Header
Accept: application/json
Request
GET https://1.2.3.4/api/rest/appliance/J8WRPD2?select=id,name,service_tag
Response
body
{
"id": "J8WRPD2",
"name": "H2025-appliance-1",
"service_tag": "J8WRPD2"
}
26 Querying a resource










