> ## 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.

# List Wi-Fi Networks

> Returns all Wi‑Fi networks stored in the organization’s library.



## OpenAPI

````yaml Get /v1/wifi-networks
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/wifi-networks:
    get:
      summary: List Wi‑Fi networks
      description: Returns all Wi‑Fi networks stored in the organization’s library.
      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.
      responses:
        '200':
          description: A list of Wi-Fi networks
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/V1WifiNetwork'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 403
                  message:
                    type: string
                    example: Forbidden
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 403
                message: Forbidden
                error: ManageXR Error
components:
  schemas:
    V1WifiNetwork:
      type: object
      description: A Wi-Fi network profile summary
      properties:
        id:
          type: string
          description: Unique identifier of the Wi-Fi network
          example: wifi_abc123
        ssid:
          type: string
          description: The SSID (name) of the Wi-Fi network
          example: MyNetwork
        nickname:
          type: string
          description: A user-defined label for the network
          example: Office Wi-Fi
        type:
          type: string
          description: The security type of the network
          enum:
            - OPEN
            - WPA
            - WPA_ENTERPRISE
            - WPA3
            - WPA3_ENTERPRISE
            - UNKNOWN
          example: WPA_ENTERPRISE
        priorityWifiNetwork:
          type: boolean
          description: >-
            Priority network. The device will always connect to this network
            over other networks when it is in range and available.
          example: false
      example:
        id: wifi_abc123
        ssid: MyNetwork
        nickname: Office Wi-Fi
        type: WPA_ENTERPRISE
        priorityWifiNetwork: false
  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.

````