POST
/
organizations
/
{orgId}
/
devices
/
set-pause-updates
curl --request POST \
  --url https://managexrapi.com/organizations/{orgId}/devices/set-pause-updates \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "deviceIds": [
    "2G0YC1ZF630NZA",
    "PA7950RGGC06043"
  ],
  "pauseUpdates": true
}'

Authorizations

Authorization
string
headerrequired

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Path Parameters

orgId
string
required

The ID of the organization. Locate the orgId under Organization Settings > API Keys.

Body

application/json
deviceIds
string[]
required

Array of device IDs (serial numbers) to update.

pauseUpdates
boolean
required

Whether to pause (true) or resume (false) configuration updates.

Response

201 - application/json
message
string