Panopto SearchIndexSyncUpdates API

Search Index Integration API

OpenAPI Specification

panopto-searchindexsyncupdates-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Panopto Public Accessibility SearchIndexSyncUpdates API
  description: The public API for Panopto. OpenID & OAuth information can be found at Panopto/oauth2/.well-known/openid-configuration
  version: '1'
host: <PanoptoServerURL>(i.e. example.hosted.panopto.com)
basePath: /Panopto
schemes:
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: SearchIndexSyncUpdates
  description: Search Index Integration API
paths:
  /api/v1/searchIndexSync/updates:
    get:
      tags:
      - SearchIndexSyncUpdates
      summary: Get IDs for videos and playlists updated after a specified UTC date time
      operationId: SearchIndexSyncUpdates_GetUpdates
      parameters:
      - type: string
        name: fromDate
        in: query
        required: true
        format: date-time
        x-nullable: false
      - type: string
        name: nextToken
        in: query
        x-nullable: true
      responses:
        '200':
          x-nullable: false
          description: ''
          schema:
            $ref: '#/definitions/SearchIndexSyncUpdateResponse'
  /api/v1/searchIndexSync/content:
    get:
      tags:
      - SearchIndexSyncUpdates
      summary: Get the content for Search Index Integration for a video or playlist by ID
      operationId: SearchIndexSyncUpdates_GetContent
      parameters:
      - type: string
        name: id
        in: query
        required: true
        format: guid
        x-nullable: false
      responses:
        '200':
          x-nullable: false
          description: ''
          schema:
            $ref: '#/definitions/SearchIndexSyncContentResponse'
definitions:
  ModelBase:
    type: object
    properties:
      Id:
        type: string
        description: The unique identifier for this item.
        format: guid
      Name:
        type: string
        description: The name of this item.
  SearchIndexSyncContentResponse:
    allOf:
    - $ref: '#/definitions/ModelBase'
    - type: object
  SearchIndexSyncUpdateResponse:
    allOf:
    - $ref: '#/definitions/ModelBase'
    - type: object
x-generator: NSwag v13.18.2.0 (NJsonSchema v10.8.0.0 (Newtonsoft.Json v13.0.0.0))