Retrieve a Tray
Get a Tray by component ID or component MAC address.
The identifier must resolve to exactly one component. An ambiguous component ID returns 412 Precondition Failed; use the component MAC address to disambiguate it.
Org must have an Infrastructure Provider entity. User must have authorization role with PROVIDER_ADMIN suffix.
Authentication
AuthorizationBearer
```
export JWT_BEARER_TOKEN="<jwt-bearer-token>"
# Example org name: "acme-inc
export ORG_NAME=<org-name>
# Use the JWT bearer token in your API request auth header:
curl -v -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_BEARER_TOKEN" https://nico-rest-api.nico.svc.cluster.local/v2/org/$ORG_NAME/nico/user/current
```
Path parameters
org
Name of the Org
id
Component ID or component MAC address
Query parameters
siteId
ID of the Site
Response
OK
nvLinkDomainId
ID of the NVLink Domain containing this Tray's Rack. Null when the Rack is not assigned to an NVLink Domain.
taskStats
Counts of non-terminal tasks currently associated with a rack or tray. Rack stats include component-scoped tasks on the rack; tray stats include only tasks that explicitly target the tray.
id
Component ID
type
Type of the tray
name
Name of the tray
manufacturer
Manufacturer of the tray
model
Model of the tray
serialNumber
Serial number of the tray
description
Description of the tray
firmwareVersion
Firmware version of the tray
powerState
Current power state of the tray
operationStatus
Flow-derived operability phase of the tray
leakStatus
Whether the tray is considered leaking coolant
position
Position of the Tray within the Rack
bmcs
BMC (Baseboard Management Controller) entries for the tray
rackId
ID of the Rack this Tray belongs to
Errors
403
Forbidden Error
404
Not Found Error
412
Precondition Failed Error
504
Gateway Timeout Error