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

# Refresh Camera List

> Refresh the list of available cameras. This operation can take a few seconds as it disconnects and reconnects to all cameras. It is useful when cameras are added or removed while the application is running.



## OpenAPI

````yaml post /cameras/refresh
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /cameras/refresh:
    post:
      tags:
        - camera
      summary: Refresh Camera List
      description: >-
        Refresh the list of available cameras. This operation can take a few
        seconds as it disconnects and reconnects to all cameras. It is useful
        when cameras are added or removed while the application is running.
      operationId: refresh_camera_list_cameras_refresh_post
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Refresh Camera List Cameras Refresh Post
                type: object
          description: Successful Response

````