Skip to main content
REST API reference

Retrieve automatic update configuration

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
}