> ## Documentation Index
> Fetch the complete documentation index at: https://docs.managexr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pause Updates

> Pause or resume configuration updates for devices.

Pausing configuration updates stops a device from syncing with its latest Configuration. User-initiated changes to Configurations and ManageXR-initiated updates to the ManageXR Admin App and Home Screen will not propagate to devices with updates paused.




## OpenAPI

````yaml Post /v1/devices/set-pause-updates
openapi: 3.1.0
info:
  title: ManageXR API
  description: API documentation for ManageXR
  version: 1.0.0
servers:
  - url: https://managexrapi.com
    description: ManageXR API Server
security:
  - basicAuth: []
paths:
  /v1/devices/set-pause-updates:
    post:
      summary: Set pause updates for devices
      description: >
        Pause or resume configuration updates for devices.


        Pausing configuration updates stops a device from syncing with its
        latest Configuration. User-initiated changes to Configurations and
        ManageXR-initiated updates to the ManageXR Admin App and Home Screen
        will not propagate to devices with updates paused.
      parameters:
        - name: organizationId
          in: query
          required: false
          schema:
            type: string
          description: >
            Unique identifier of the organization. This parameter is only
            necessary when using multi-organization API keys. 


            Defaults to the organizationId associated with the API key.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                deviceIds:
                  type: array
                  items:
                    type: string
                  description: Array of device IDs (serial numbers) to update.
                pauseUpdates:
                  type: boolean
                  description: >-
                    Whether to pause (true) or resume (false) configuration
                    updates.
              required:
                - deviceIds
                - pauseUpdates
            examples:
              example-pause:
                summary: Pause updates for devices
                value:
                  deviceIds:
                    - 2G0YC1ZF630NZA
                    - PA7950RGGC06043
                  pauseUpdates: true
              example-resume:
                summary: Resume updates for devices
                value:
                  deviceIds:
                    - 2G0YC1ZF630NZA
                    - PA7950RGGC06043
                  pauseUpdates: false
      responses:
        '200':
          description: Success
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        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.

````