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

# Get required information for offline lan streaming on all video intercoms

> Get required information for offline lan streaming on all video intercoms



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/doorbellcamera/getOfflineLanStreamingInfo
openapi: 3.0.1
info:
  contact:
    email: developer@rhombussystems.com
  description: >-
    This API is for use by Rhombus customers and partners.


    ## Authentication


    All requests require two headers:

    - `x-auth-scheme` — The authentication scheme identifier. Use `api-token`
    for standard API key auth, or `partner-api-token` for partner API auth.

    - `x-auth-apikey` — Your Rhombus API key.


    Example:

    ```

    POST /api/camera/getMinimalCameraStateList

    x-auth-scheme: api-token

    x-auth-apikey: YOUR_API_KEY

    Content-Type: application/json

    ```
  title: Rhombus API
  version: '1.0'
servers:
  - description: Production Server
    url: https://api2.rhombussystems.com
security:
  - ApiKeyAuth: []
paths:
  /api/doorbellcamera/getOfflineLanStreamingInfo:
    post:
      tags:
        - Doorbell Camera Webservice
      summary: >-
        Get required information for offline lan streaming on all video
        intercoms
      description: >-
        Get required information for offline lan streaming on all video
        intercoms
      operationId: getDoorbellCameraOfflineLanStreamingInfo
      parameters:
        - description: >-
            Authentication scheme identifier. Use `api-token` for standard API
            key authentication, `partner-api-token` for partner API key
            authentication. Must be paired with the `x-auth-apikey` header
            containing your API key.
          example: api-token
          in: header
          name: x-auth-scheme
          required: true
          schema:
            type: string
            default: api-token
            enum:
              - api-token
              - api
              - partner-api-token
              - partner-api
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSRequest
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSResponse
          description: OK
components:
  schemas:
    Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSRequest:
      type: object
      description: >-
        Request object for retrieving offline LAN streaming information for
        doorbell cameras.
    Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSResponse:
      type: object
      description: >-
        Response object containing offline LAN streaming information for
        doorbell cameras.
      properties:
        error:
          type: boolean
          nullable: true
        errorMsg:
          type: string
          nullable: true
        info:
          type: object
          additionalProperties:
            $ref: >-
              #/components/schemas/Doorbellcamera_DoorbellCameraOfflineLanStreamingInfo
          description: >-
            Map of doorbell camera UUIDs to their offline LAN streaming
            information
          nullable: true
        warningMsg:
          type: string
          nullable: true
    Doorbellcamera_DoorbellCameraOfflineLanStreamingInfo:
      type: object
      description: Information for offline LAN streaming of doorbell camera content.
      properties:
        accessToken:
          type: string
          description: Access token for offline LAN streaming
          example: abc123def456
          nullable: true
        lanAddresses:
          type: array
          description: List of LAN addresses for offline streaming
          items:
            type: string
            description: List of LAN addresses for offline streaming
            nullable: true
          nullable: true
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Rhombus API key. Must be accompanied by the `x-auth-scheme` header
        set to `api-token` (or `partner-api-token` for partner endpoints).
      in: header
      name: x-auth-apikey
      type: apiKey

````