Skip to main content
A newer release of this product is available.

Support auto-update configurations endpoint overview

Contributors

Overview

Use this API to query and retrieve all the configurations for automatic updates.

This API only supports GET calls.


Examples

Retrieving the configuration settings for automatic updates

The following example shows how to retrieve settings for all automatic updates:

# The API:
GET /support/auto-update/configurations/

# The call:
curl -X GET "https://<mgmt-ip>/api/support/auto-update/configurations?fields=*"

# The response:
{
"records": [
  {
    "uuid": "440ae2e4-fd8f-4225-9bee-94e2da3f8d9d",
    "category": "firmware",
    "description": {
      "message": "SP/BMC Firmware",
      "code": "131072402"
    },
    "action": "confirm",
  }
],
"num_records": 1
}