Panopto XfpUserProfiles API

Portals API

Operations 6

POST /api/v1/portal/{portalId}/user Create XFP user profile #
GET /api/v1/portal/{portalId}/user Get XFP user profiles according to the filter #
DELETE /api/v1/portal/{portalId}/user/{userId} Delete an XFP user profile #
PUT /api/v1/portal/{portalId}/user/{userId} Update an XFP user profile #
POST /api/v1/portal/{portalId}/user/bulk-create Bulk Create XFP users #
POST /api/v1/portal/{portalId}/user/bulk-delete Bulk Delete XFP users #

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/panopto-xfpuserprofiles-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

panopto-xfpuserprofiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Panopto Public Accessibility Xfp User Profiles API
  description: The public API for Panopto. OpenID & OAuth information can be found at Panopto/oauth2/.well-known/openid-configuration
  version: '1'
servers:
- url: https://<PanoptoServerURL>(i.e. example.hosted.panopto.com)/Panopto
tags:
- name: XfpUserProfiles
  description: Portals API
paths:
  /api/v1/portal/{portalId}/user:
    post:
      tags:
      - XfpUserProfiles
      summary: Create XFP user profile
      operationId: XfpUserProfiles_Create
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      responses:
        '200':
          description: Created user profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XfpUserProfile'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
        '412':
          description: Precondition failed
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/XfpUserProfileCreate'
    get:
      tags:
      - XfpUserProfiles
      summary: Get XFP user profiles according to the filter
      operationId: XfpUserProfiles_List
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      - name: XfpRole
        in: query
        schema:
          type: string
      - name: EmailAddress
        in: query
        schema:
          type: string
      - name: Page
        in: query
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        schema:
          type: integer
          format: int32
      - name: Sort
        in: query
        schema:
          type: string
      - name: SecondarySort
        in: query
        schema:
          type: string
      - name: SortDescending
        in: query
        schema:
          type: boolean
      - name: SecondarySortDescending
        in: query
        schema:
          type: boolean
      - name: ComputeTotalCount
        in: query
        schema:
          type: boolean
      - name: ComputeHasMorePages
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XfpUserProfile'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
  /api/v1/portal/{portalId}/user/{userId}:
    delete:
      tags:
      - XfpUserProfiles
      summary: Delete an XFP user profile
      operationId: XfpUserProfiles_Delete
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      - name: userId
        in: path
        required: true
        schema:
          type: string
          format: guid
      responses:
        '200':
          description: If xfp user was deleted successfully
          content:
            application/json:
              schema:
                type: boolean
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
        '412':
          description: Precondition failed
        '404':
          description: XFP user profile not found
    put:
      tags:
      - XfpUserProfiles
      summary: Update an XFP user profile
      operationId: XfpUserProfiles_Update
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      - name: userId
        in: path
        required: true
        schema:
          type: string
          format: guid
      responses:
        '200':
          description: Updated user profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XfpUserProfile'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
        '412':
          description: Precondition failed
        '404':
          description: XFP user profile not found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/XfpUserProfileUpdate'
  /api/v1/portal/{portalId}/user/bulk-create:
    post:
      tags:
      - XfpUserProfiles
      summary: Bulk Create XFP users
      operationId: XfpUserProfiles_BulkCreate
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XfpUserProfile'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
  /api/v1/portal/{portalId}/user/bulk-delete:
    post:
      tags:
      - XfpUserProfiles
      summary: Bulk Delete XFP users
      operationId: XfpUserProfiles_BulkDelete
      parameters:
      - name: portalId
        in: path
        required: true
        schema:
          type: string
          format: guid
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XfpUserProfile'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
components:
  schemas:
    XfpUserProfile:
      allOf:
      - $ref: '#/components/schemas/ModelBaseOfGuid'
      - type: object
        required:
        - UserId
        - PortalPublicId
        - CreatedDate
        properties:
          UserId:
            type: string
            format: guid
          FirstName:
            type: string
          LastName:
            type: string
          EmailAddress:
            type: string
          PortalPublicId:
            type: string
            format: guid
          XfpRole:
            type: string
          CreatedDate:
            type: string
            format: date-time
    XfpUserProfileCreate:
      type: object
      required:
      - XfpRole
      properties:
        FirstName:
          type: string
        LastName:
          type: string
        EmailAddress:
          type: string
        XfpRole:
          $ref: '#/components/schemas/XfpUserRole'
        TemporaryPassword:
          type: string
    ModelBaseOfGuid:
      type: object
      properties:
        Id:
          type: string
          format: guid
        Name:
          type: string
    XfpUserProfileUpdate:
      type: object
      properties:
        XfpRole:
          type: string
        FirstName:
          type: string
        LastName:
          type: string
    XfpUserRole:
      type: string
      description: ''
      x-enumNames:
      - Viewer
      - PortalManager
      enum:
      - Viewer
      - PortalManager
x-generator: NSwag v13.18.2.0 (NJsonSchema v10.8.0.0 (Newtonsoft.Json v13.0.0.0))