Skip to main content

GET /api/v1/data/devices/{id}/systemBoard

Use this method to return system-board information for a specific device.

Authentication

Authentication with user name 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

CodeDescriptionComments
200OKThe request completed successfully.
404Not foundThe 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).

AttributesTypeDescription
machineTypeStringDevice machine type
modelStringDevice model
productNameStringDevice product name
serialNumberStringDevice serial number
uuidStringDevice UUID
_linksObjectDevice 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"
}
}