Creates a new server group.

Creates a new server group.

SecuritybearerAuth
Request
query Parameters
o
required
integer

Organization ID for the created group.

Request Body schema: application/json
required
name
required
string

Name of the group

refresh_interval
required
integer [ 240 .. 1440 ]

Frequency of device refreshes (scans) in minutes. Minimum: 240 Maximum: 1440

parent_server_group_id
required
integer

ID of the parent group. Use the organization's Default Group ID to make this a top-level group. See About Automox API - Default Group ID

ui_color
string

The highlight color for the group. Primarily used on the System Management view. Format: #059F1D

notes
string

Use to define notes that are displayed while editing the policy

enable_os_auto_update
boolean or null

Enforce automatic update settings Options: null: Keep Device's Setting. true: Enable OS automatic updates. false: Disable OS automatic updates.

enable_wsus
boolean or null

Enforce WSUS settings for Windows devices. Options: null: Keep Device's Setting. true: force WSUS. false: force Windows Update.

wsus_server
string

WSUS server address. Use with enable_wsus. Format: "https://myserver.com:8530"

policies
Array of integers
Responses
200

Successful Operation

400

Invalid Request

401

Access token is missing or invalid

403

You do not have permission to perform this action.

429

Too many requests

503

Service Unavailable

default

Invalid Request

post/servergroups
Request samples
application/json
{
  • "name": "string",
  • "refresh_interval": 240,
  • "parent_server_group_id": 0,
  • "ui_color": "string",
  • "notes": "string",
  • "enable_os_auto_update": true,
  • "enable_wsus": true,
  • "wsus_server": "string",
  • "policies": [
    • 0
    ]
}
Response samples
application/json
{
  • "id": 0,
  • "organization_id": 0,
  • "name": "string",
  • "refresh_interval": 240,
  • "parent_server_group_id": 0,
  • "ui_color": "string",
  • "notes": "string",
  • "enable_os_auto_update": true,
  • "server_count": 0,
  • "wsus_config": {
    • "id": 0,
    • "server_group_id": 0,
    • "is_managed": true,
    • "server_url": "string",
    • "created_at": "string",
    • "updated_at": "string"
    },
  • "policies": [
    • 0
    ]
}