Rhombus Systems Video Webservice API

The Video Webservice API from Rhombus Systems — 21 operation(s) for video webservice.

Operations 21

POST /api/video/cancelSplice Cancel splice #
POST /api/video/cancelSpliceV2 Cancel splice V2 #
POST /api/video/createSharedTimelapseGroup Create shared timelapse group #
POST /api/video/deleteSharedTimelapseGroup Delete shared timelapse group #
POST /api/video/deleteTimelapseClips Delete timelapse clips #
POST /api/video/generateRangedTimelapseClip Generate ranged timelapse clip #
POST /api/video/generateTimelapseClip Generate timelapse clip #
POST /api/video/getExactFrameData Get exact frame data #
POST /api/video/getExactFrameUri Get exact frame URI #
POST /api/video/getMaxSpliceDuration Get max splice duration #
POST /api/video/getSharedTimelapseGroups Get shared timelapse groups #
POST /api/video/getSplicedClipsInProgress Get spliced clips in progress #
POST /api/video/getTimelapseClips Get timelapse clips #
POST /api/video/getTimelapseMetadata Get timelapse metadata #
POST /api/video/retrySplice Retry splice #
POST /api/video/shareTimelapseClips Share timelapse clips #
POST /api/video/splice Splice #
POST /api/video/spliceFrame Splice frame #
POST /api/video/spliceV2 Splice V2 #
POST /api/video/spliceV3 Splice V3 #
POST /api/video/updateSharedTimelapseGroup Update shared timelapse group #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/rhombus-systems-video-webservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rhombus-systems-video-webservice-api-openapi.yml Raw ↑
openapi: 3.2.0
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 Video Webservice API
  version: '1.0'
servers:
- description: Production Server
  url: https://api2.rhombussystems.com
security:
- ApiKeyAuth: []
tags:
- name: Video Webservice
paths:
  /api/video/cancelSplice:
    post:
      deprecated: true
      description: Use /cancelSpliceV2 instead
      operationId: cancelSplice
      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/Video_CancelSpliceWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_CancelSpliceWSResponse'
          description: OK
      summary: Cancel splice
      tags:
      - Video Webservice
  /api/video/cancelSpliceV2:
    post:
      description: Cancel a spliced clip request
      operationId: cancelSpliceV2
      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/Video_CancelSpliceV2WSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_CancelSpliceV2WSResponse'
          description: OK
      summary: Cancel splice V2
      tags:
      - Video Webservice
  /api/video/createSharedTimelapseGroup:
    post:
      description: Share multiple timelapses in one link
      operationId: createSharedTimelapseGroup
      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/Video_CreateSharedTimelapseGroupWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_CreateSharedTimelapseGroupWSResponse'
          description: OK
      summary: Create shared timelapse group
      tags:
      - Video Webservice
  /api/video/deleteSharedTimelapseGroup:
    post:
      description: Delete a shared timelapse link
      operationId: deleteSharedTimelapseGroup
      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/Video_DeleteSharedTimelapseGroupWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_DeleteSharedTimelapseGroupWSResponse'
          description: OK
      summary: Delete shared timelapse group
      tags:
      - Video Webservice
  /api/video/deleteTimelapseClips:
    post:
      description: Delete a timelapse
      operationId: deleteTimelapseClips
      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/Video_DeleteTimelapseClipsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_DeleteTimelapseClipsWSResponse'
          description: OK
      summary: Delete timelapse clips
      tags:
      - Video Webservice
  /api/video/generateRangedTimelapseClip:
    post:
      description: Generate a timelapse where each device facet contributes footage only during its own time ranges.
      operationId: generateRangedTimelapseClip
      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/Video_GenerateRangedTimelapseClipWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GenerateRangedTimelapseClipWSResponse'
          description: OK
      summary: Generate ranged timelapse clip
      tags:
      - Video Webservice
  /api/video/generateTimelapseClip:
    post:
      description: Generate a timelapse
      operationId: generateTimelapseClip
      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/Video_GenerateTimelapseClipWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GenerateTimelapseClipWSResponse'
          description: OK
      summary: Generate timelapse clip
      tags:
      - Video Webservice
  /api/video/getExactFrameData:
    post:
      description: Fetches and return bytes in base64 format of an the frame at the given timestamp for a device. Use this instead of getExactFrameUri if, for whatever reason, either the URI is not useful or the client is unable to hit the media servers
      operationId: getExactFrameData
      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/Video_GetExactFrameDataWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetExactFrameDataWSResponse'
          description: OK
      summary: Get exact frame data
      tags:
      - Video Webservice
  /api/video/getExactFrameUri:
    post:
      description: Generate URL to get an exact frame with optional crop from a camera
      operationId: getExactFrameUri
      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/Video_GetExactFrameUriWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetExactFrameUriWSResponse'
          description: OK
      summary: Get exact frame URI
      tags:
      - Video Webservice
  /api/video/getMaxSpliceDuration:
    post:
      description: Get the max splice duration an organization can set
      operationId: getMaxSpliceDuration
      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/Video_GetMaxSpliceDurationWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetMaxSpliceDurationWSResponse'
          description: OK
      summary: Get max splice duration
      tags:
      - Video Webservice
  /api/video/getSharedTimelapseGroups:
    post:
      description: Get details of all shared timelapse links for organization
      operationId: getSharedTimelapseGroups
      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/Video_GetSharedTimelapseGroupsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetSharedTimelapseGroupsWSResponse'
          description: OK
      summary: Get shared timelapse groups
      tags:
      - Video Webservice
  /api/video/getSplicedClipsInProgress:
    post:
      description: Get all spliced clips in progress
      operationId: getSplicedClipsInProgress
      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/Video_GetSplicedClipsInProgressWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetSplicedClipsInProgressWSResponse'
          description: OK
      summary: Get spliced clips in progress
      tags:
      - Video Webservice
  /api/video/getTimelapseClips:
    post:
      description: Get all timelapse clips for organization
      operationId: getTimelapseClips
      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/Video_GetTimelapseClipsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetTimelapseClipsWSResponse'
          description: OK
      summary: Get timelapse clips
      tags:
      - Video Webservice
  /api/video/getTimelapseMetadata:
    post:
      description: Get information about earliest available timelapse images for cameras
      operationId: getTimelapseMetadata
      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/Video_GetTimelapseMetadataWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_GetTimelapseMetadataWSResponse'
          description: OK
      summary: Get timelapse metadata
      tags:
      - Video Webservice
  /api/video/retrySplice:
    post:
      description: Send a request to retry splicing a clip
      operationId: retrySplice
      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/Video_RetrySpliceWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_RetrySpliceWSResponse'
          description: OK
      summary: Retry splice
      tags:
      - Video Webservice
  /api/video/shareTimelapseClips:
    post:
      deprecated: true
      description: Use /CreateSharedTimelapseGroup instead
      operationId: shareTimelapseClips
      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/Video_ShareTimelapseClipsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_ShareTimelapseClipsWSResponse'
          description: OK
      summary: Share timelapse clips
      tags:
      - Video Webservice
  /api/video/splice:
    post:
      deprecated: true
      description: Use /spliceV3 instead
      operationId: splice
      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/Video_SpliceWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_SpliceWSResponse'
          description: OK
      summary: Splice
      tags:
      - Video Webservice
  /api/video/spliceFrame:
    post:
      description: Send a request to create a single image from a point in time
      operationId: spliceFrame
      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/Video_SpliceFrameWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_SpliceFrameWSResponse'
          description: OK
      summary: Splice frame
      tags:
      - Video Webservice
  /api/video/spliceV2:
    post:
      deprecated: true
      description: Use /spliceV3 instead
      operationId: spliceV2
      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/Video_SpliceV2WSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_SpliceV2WSResponse'
          description: OK
      summary: Splice V2
      tags:
      - Video Webservice
  /api/video/spliceV3:
    post:
      description: Send a request to create an arbitrary clip for multiple cameras
      operationId: spliceV3
      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/Video_SpliceV3WSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_SpliceV3WSResponse'
          description: OK
      summary: Splice V3
      tags:
      - Video Webservice
  /api/video/updateSharedTimelapseGroup:
    post:
      description: Update title, description, or expiration on a shared timelapse link
      operationId: updateSharedTimelapseGroup
      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/Video_UpdateSharedTimelapseGroupWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video_UpdateSharedTimelapseGroupWSResponse'
          description: OK
      summary: Update shared timelapse group
      tags:
      - Video Webservice
components:
  schemas:
    Video_GenerateTimelapseClipWSResponse:
      type: object
      description: Response object for generating a timelapse clip.
      properties:
        clipUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        warningMsg:
          type:
          - string
          - 'null'
    Video_GetTimelapseMetadataWSRequest:
      type: object
      description: Request object for getting timelapse metadata for cameras.
      properties:
        deviceUuidList:
          type:
          - array
          - 'null'
          description: List of device facet UUIDs to get timelapse metadata for
          items:
            type:
            - string
            - 'null'
            format: DeviceFacetUuid
            description: RUUID with optional appended facet information
            example: AAAAAAAAAAAAAAAAAAAAAA.v0
    Video_CancelSpliceWSResponse:
      type: object
      description: Response object for canceling a spliced clip (deprecated).
      properties:
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        warningMsg:
          type:
          - string
          - 'null'
    Video_GetSharedTimelapseGroupsWSResponse:
      type: object
      description: Response object containing all shared timelapse groups for the organization.
      properties:
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        sharedTimelapses:
          type:
          - array
          - 'null'
          description: List of shared timelapse groups for the organization
          items:
            $ref: '#/components/schemas/SharedTimelapseGroupWrapperType'
        warningMsg:
          type:
          - string
          - 'null'
    Video_GenerateTimelapseClipWSRequest:
      type: object
      description: Request object for generating a timelapse clip.
      properties:
        description:
          type:
          - string
          - 'null'
          description: Description for the timelapse
          example: Daily timelapse of security events
        deviceUuids:
          type:
          - array
          - 'null'
          description: List of device facet UUIDs to include in the timelapse. UUIDs without a facet defined will default to facet v0
          items:
            type:
            - string
            - 'null'
            format: DeviceFacetUuid
            description: RUUID with optional appended facet information
            example: AAAAAAAAAAAAAAAAAAAAAA.v0
        drawCameraDetails:
          type:
          - boolean
          - 'null'
          description: Whether to draw camera details on the video
          example: true
        drawTimestamp:
          type:
          - boolean
          - 'null'
          description: Whether to draw timestamps on the video
          example: true
        skipNights:
          type:
          - boolean
          - 'null'
          description: Whether to skip night time periods
          example: true
        skipWeekends:
          type:
          - boolean
          - 'null'
          description: Whether to skip weekend periods
          example: false
        startTime:
          type:
          - integer
          - 'null'
          format: int64
          description: Start time in milliseconds for the timelapse
          example: 1640995200000
        stopTime:
          type:
          - integer
          - 'null'
          format: int64
          description: Stop time in milliseconds for the timelapse
          example: 1640998800000
        title:
          type:
          - string
          - 'null'
          description: Title for the timelapse
          example: Daily Security Review
        videoDuration:
          type:
          - integer
          - 'null'
          format: int32
          description: Duration in seconds for the output video
          example: 60
        videoFormat:
          type:
          - string
          - 'null'
          description: Format for the output video
          example: mp4
    MetaDataLocationType:
      type: object
      properties:
        region:
          type:
          - string
          - 'null'
    Video_GetExactFrameUriWSResponse:
      type: object
      description: Response object containing the exact frame URI.
      properties:
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        frameUri:
          type:
          - string
          - 'null'
          description: URI to access the exact frame
          example: https://example.com/frame/12345.jpg
        responseMessage:
          type:
          - string
          - 'null'
          description: Response message from the frame generation
          example: Frame generated successfully
        warningMsg:
          type:
          - string
          - 'null'
    PolicyEventPipelineEnum:
      type: string
      enum:
      - DEFAULT
      - POLICY_ALERT_PUBLISHER
    Video_GetExactFrameDataWSResponse:
      type: object
      description: Response object containing the bytes of the requested frame data in base64 format
      properties:
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        frameData:
          type:
          - string
          - 'null'
          description: Base64-encoded image bytes for the requested frame. Null if no frame could be retrieved.
        mimeType:
          type:
          - string
          - 'null'
          description: MIME type of the encoded frame data
          example: image/jpeg
        responseMessage:
          type:
          - string
          - 'null'
          description: Human-readable message describing the result
          example: Frame retrieved successfully
        warningMsg:
          type:
          - string
          - 'null'
    Video_DeleteSharedTimelapseGroupWSRequest:
      type: object
      description: Request object for deleting a shared timelapse group.
      properties:
        uuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
    Video_SpliceV2WSResponse:
      type: object
      description: Response object for splicing video clips V2 (deprecated).
      properties:
        clipUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
        error:
          type:
          - boolean
          - 'null'
        errorMsg:
          type:
          - string
          - 'null'
        warningMsg:
          type:
          - string
          - 'null'
    Video_ShareTimelapseClipsWSRequest:
      type: object
      description: Request object for sharing timelapse clips (deprecated).
      properties:
        clipUuids:
          type:
          - array
          - 'null'
          description: List of timelapse clip UUIDs to share
          items:
            type:
            - string
            - 'null'
            format: RUUID
            description: base 64 (url-safe) uuid string
            example: AAAAAAAAAAAAAAAAAAAAAA
    Video_GetExactFrameUriWSRequest:
      type: object
      description: Request object for generating URL to get an exact frame with optional crop from a camera.
      properties:
        cameraUuid:
          type:
          - string
          - 'null'
          format: DeviceFacetUuid
          description: RUUID with optional appended facet information
          example: AAAAAAAAAAAAAAAAAAAAAA.v0
        downscaleFactor:
          type:
          - integer
          - 'null'
          format: int32
          description: Ratio to shrink the image pi

# --- truncated at 32 KB (72 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/rhombus-systems/refs/heads/main/openapi/rhombus-systems-video-webservice-api-openapi.yml