Host Firmware Config
Create or Update Host Firmware Config
Create or update host firmware config for the org/site. The target Site is specified by siteId in the request body.
User must have authorization role with PROVIDER_ADMIN suffix in the URL {org}.
put/v2/org/{org}/nico/firmware-config/host
Request body
Example request
{
"siteId": "00000000-0000-0000-0000-000000000001",
"vendor": "Nvidia",
"model": "DGXH100",
"explicitStartNeeded": true,
"ordering": [
"Cx7",
"BMC"
],
"components": [
{
"type": "Cx7",
"firmware": [
{
"version": "28.47.2682",
"default": true,
"installOnlySpecified": true,
"powerDrainsNeeded": 1,
"preUpdateResets": true,
"artifacts": [
{
"url": "https://firmware.example.invalid/28.47.2682/fw.bin",
"sha256": "a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456"
}
]
}
]
}
]
}Response
Host firmware config replaced/updated
Example response
{
"vendor": "Nvidia",
"model": "DGXH100",
"explicitStartNeeded": true,
"ordering": [
"Cx7",
"BMC"
],
"components": [
{
"type": "BMC",
"firmware": [
{
"version": "2.3.7",
"default": true,
"installOnlySpecified": false,
"powerDrainsNeeded": 0,
"preUpdateResets": false,
"artifacts": [
{
"url": "https://firmware.example.invalid/2.3.7/fw.bin",
"sha256": "a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456"
}
]
}
]
},
{
"type": "Cx7",
"firmware": [
{
"version": "28.47.2682",
"default": true,
"installOnlySpecified": true,
"powerDrainsNeeded": 1,
"preUpdateResets": true,
"artifacts": [
{
"url": "https://firmware.example.invalid/28.47.2682/fw.bin",
"sha256": "a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456"
}
]
}
]
}
],
"created": "2025-08-24T14:15:22Z",
"updated": "2025-08-24T14:15:22Z"
}