GET /api/v1/data/devices/{id}/systemBoard
Use this method to return system-board information for a specific device.
Authentication
Authentication with username and password is required.
Resource URI
GET https://{orchestrator_server_IP}/api/v1/data/devices/{id}/systemBoard
where {id} is the ID of the device. To obtain the device IDs, use GET /api/v1/data/devices.
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
404 | Not found | The resource cannot be found. A descriptive error message is returned in the response body. |
Response body
When the request is successful, the following attributes are returned. If the request fails, standard message attributes are returned (see Status messages).
Attributes | Type | Description | ||
---|---|---|---|---|
machineType | String | Device machine type | ||
model | String | Device model | ||
productName | String | Device product name | ||
serialNumber | String | Device serial number | ||
uuid | String | Device UUID | ||
_links | Object | Device URI (see Links) |
The following example is returned if the request is successful.
{
"machineType": "8737",
"model": "AC1",
"productName": "Flex System x240 Compute Node with embedded 10Gb Virtual Fabric",
"serialNumber": "00008X7162",
"uuid": "8E9768E2A8143660A24E01542802FEE7",
"_links": {
"rel": "self",
"uri": "/api/v1/data/devices/C7199530FEDE4FE09540DFC3D75FC56C/systemBoard"
}
}
Give documentation feedback