> ## 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 media uris for doorbell camera to retrieve footage and audio

> Get media uris for doorbell camera to retrieve footage and audio



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/doorbellcamera/getMediaUris
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/getMediaUris:
    post:
      tags:
        - Doorbell Camera Webservice
      summary: Get media uris for doorbell camera to retrieve footage and audio
      description: Get media uris for doorbell camera to retrieve footage and audio
      operationId: getDoorbellCameraMediaUris
      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/Common_devices_GetMediaUrisWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Doorbellcamera_GetDoorbellCameraMediaUrisWSResponse
          description: OK
components:
  schemas:
    Common_devices_GetMediaUrisWSRequest:
      type: object
      properties:
        deviceUuid:
          type: string
          format: DeviceFacetUuid
          description: RUUID with optional appended facet information
          example: AAAAAAAAAAAAAAAAAAAAAA.v0
          nullable: true
    Doorbellcamera_GetDoorbellCameraMediaUrisWSResponse:
      type: object
      description: >-
        Response object containing media URIs for doorbell camera footage and
        audio.
      properties:
        lanCheckUrls:
          type: array
          description: >-
            List of LAN check URLs to verify device availability on local
            network
          items:
            type: string
            description: >-
              List of LAN check URLs to verify device availability on local
              network
            nullable: true
          nullable: true
        lanLiveH264Uris:
          type: array
          description: List of LAN URIs for live H.264 video streams
          items:
            type: string
            description: List of LAN URIs for live H.264 video streams
            nullable: true
          nullable: true
        lanLiveMpdUris:
          type: array
          description: List of LAN URIs for live MPD streams
          items:
            type: string
            description: List of LAN URIs for live MPD streams
            nullable: true
          nullable: true
        lanLiveOpusUris:
          type: array
          description: List of LAN URIs for live Opus audio streams
          items:
            type: string
            description: List of LAN URIs for live Opus audio streams
            nullable: true
          nullable: true
        lanVodM3u8UrisTemplates:
          type: array
          description: List of LAN URI templates for VOD M3U8 streams
          items:
            type: string
            description: List of LAN URI templates for VOD M3U8 streams
            nullable: true
          nullable: true
        lanVodMpdUrisTemplates:
          type: array
          description: List of LAN URI templates for VOD MPD streams
          items:
            type: string
            description: List of LAN URI templates for VOD MPD streams
            nullable: true
          nullable: true
        wanLiveH264Uri:
          type: string
          description: WAN URI for live H.264 video stream
          nullable: true
        wanLiveMpdUri:
          type: string
          description: WAN URI for live MPD stream
          nullable: true
        wanLiveOpusUri:
          type: string
          description: WAN URI for live Opus audio stream
          nullable: true
        wanVodM3u8UriTemplate:
          type: string
          description: WAN URI template for VOD M3U8 streams
          nullable: true
        wanVodMpdUriTemplate:
          type: string
          description: WAN URI template for VOD MPD streams
          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

````