TVU Networks Input & Output Module API

Input and output module management — encoder profiles, input modules, output modules and preview decoders for TVU transmission endpoints. Contract assembled from the 23 per-endpoint OpenAPI 3.0.1 exports TVU publishes on its own API documentation site.

Operations 23

PUT /input-docker/api/v1/input update input #
POST /input-docker/api/v1/input run input #
GET /input-docker/api/v1/input/{inputId} query input #
DELETE /input-docker/api/v1/input/{inputId} delete input #
GET /input-docker/api/v1/inputs query input list #
POST /output-docker/api/v1/output run output #
PUT /output-docker/api/v1/output update output #
GET /output-docker/api/v1/output/{outputId} query output #
DELETE /output-docker/api/v1/output/{outputId} delete output #
GET /output-docker/api/v1/outputs query output list #
POST /urcaller/api/v1/encodingProfile createEncodingProfile #
GET /urcaller/api/v1/encodingProfile queryEncodingProfile #
DELETE /urcaller/api/v1/encodingProfile deleteEncodingProfile #
PUT /urcaller/api/v1/encodingProfile encodingProfile #
GET /urcaller/api/v1/encodingProfile/dict queryEncodingProfileDict #
GET /urcaller/api/v1/encodingProfiles queryEncodingProfiles #
POST /urcaller/api/v2/encodingProfile createEncodingProfile #
GET /urcaller/api/v2/encodingProfile queryEncodingProfile #
DELETE /urcaller/api/v2/encodingProfile deleteEncodingProfile #
PUT /urcaller/api/v2/encodingProfile encodingProfile #
GET /urcaller/api/v2/encodingProfile/dict queryEncodingProfileDict #
GET /urcaller/api/v2/encodingProfiles queryEncodingProfiles #
POST /userAuth/token/getToken get "session id" for authentication #

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/input-output-module-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 email required.

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

OpenAPI Specification

tvu-networks-input-and-output-module-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: TVU Networks — Input&Output Module API
  description: Input&Output Module API operations of the TVU Networks public HTTP API, assembled verbatim
    from the per-endpoint OpenAPI 3.0.1 exports TVU publishes on its own Apifox documentation site (https://docs.tvunetworks.cn/).
    Each operation body is the provider's own export; only grouping, servers[] and operationId backfill
    were added by API Evangelist.
  version: 1.0.0
  contact:
    name: TVU Networks
    url: https://www.tvunetworks.com/tvu-developer/
servers:
- url: https://api.tvunetworks.com
  description: Prod Env default server
paths:
  /input-docker/api/v1/input:
    put:
      summary: update input
      deprecated: false
      description: update input by identification source
      operationId: update input
      tags:
      - Input&Output Module API/input-module-api
      - input-module-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunInputDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunInputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/input-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728336-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728336.md
    post:
      summary: run input
      deprecated: false
      description: run input module by identification source
      operationId: run input
      tags:
      - Input&Output Module API/input-module-api
      - input-module-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunInputDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunInputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/input-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728337-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728337.md
  /input-docker/api/v1/input/{inputId}:
    get:
      summary: query input
      deprecated: false
      description: get input record by identification source
      operationId: query input
      tags:
      - Input&Output Module API/input-module-api
      - input-module-api
      parameters:
      - name: inputId
        in: path
        description: inputId, Retrieve from run input api
        required: true
        example: '1227255915959431200'
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: false
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunInputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/input-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728338-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728338.md
    delete:
      summary: delete input
      deprecated: false
      description: delete input record by identification source
      operationId: delete input
      tags:
      - Input&Output Module API/input-module-api
      - input-module-api
      parameters:
      - name: inputId
        in: path
        description: inputId, Retrieve from run input api
        required: true
        example: '1227255915959431200'
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultVoid'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/input-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728339-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728339.md
  /input-docker/api/v1/inputs:
    get:
      summary: query input list
      deprecated: false
      description: get input module by identification source
      operationId: query input list
      tags:
      - Input&Output Module API/input-module-api
      - input-module-api
      parameters:
      - name: pageNum
        in: query
        description: ''
        required: false
        schema:
          default: '1'
          type: string
      - name: pageSize
        in: query
        description: ''
        required: false
        schema:
          default: '10'
          type: string
      - name: sort
        in: query
        description: 'Optional values: [1, 2]. 1: Sort by creation time, 2: Sort by update time'
        required: false
        example: 1
        schema:
          default: 1
          format: int32
          type: integer
      - name: asc
        in: query
        description: 'Optional values: [1, 2]. 1: Ascending order, 2: Descending order'
        required: false
        example: '1'
        schema:
          default: false
          type: boolean
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultPageInfoRunInputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/input-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728335-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728335.md
  /output-docker/api/v1/output:
    post:
      summary: 'run output '
      deprecated: false
      description: run output module connect with input
      operationId: run output
      tags:
      - Input&Output Module API/output-module-api
      - output-module-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunOutPutDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunOutputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/output-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728352-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728352.md
    put:
      summary: update output
      deprecated: false
      description: update output module connect with input
      operationId: update output
      tags:
      - Input&Output Module API/output-module-api
      - output-module-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunOutPutDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunOutputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/output-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728353-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728353.md
  /output-docker/api/v1/output/{outputId}:
    get:
      summary: query output
      deprecated: false
      description: ''
      operationId: query output
      tags:
      - Input&Output Module API/output-module-api
      - output-module-api
      parameters:
      - name: outputId
        in: path
        description: outputId, Retrieve from run output api
        required: true
        example: '1227255915959431200'
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunOutputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/output-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728355-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728355.md
    delete:
      summary: delete output
      deprecated: false
      description: ''
      operationId: delete output
      tags:
      - Input&Output Module API/output-module-api
      - output-module-api
      parameters:
      - name: outputId
        in: path
        description: outputId, Retrieve from run output api
        required: true
        example: '1227255915959431200'
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultVoid'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/output-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728356-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728356.md
  /output-docker/api/v1/outputs:
    get:
      summary: query output list
      deprecated: false
      description: ''
      operationId: query output list
      tags:
      - Input&Output Module API/output-module-api
      - output-module-api
      parameters:
      - name: pageNum
        in: query
        description: ''
        required: false
        schema:
          default: '1'
          type: string
      - name: pageSize
        in: query
        description: ''
        required: false
        schema:
          default: '10'
          type: string
      - name: sort
        in: query
        description: 'Optional values: [1, 2]. 1: Sort by creation time, 2: Sort by update time'
        required: false
        example: 1
        schema:
          default: 1
          format: int32
          type: integer
      - name: asc
        in: query
        description: 'Optional values: [1, 2]. 1: Ascending order, 2: Descending order'
        required: false
        example: '1'
        schema:
          default: false
          type: boolean
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultRunOutputVO'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: Input&Output Module API/output-module-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728354-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728354.md
  /urcaller/api/v1/encodingProfile:
    post:
      summary: createEncodingProfile
      deprecated: false
      description: Creating an encodingProfile
      operationId: createEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EncodingProfileDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileApiVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id001
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id001
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728340-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728340.md
    get:
      summary: queryEncodingProfile
      deprecated: false
      description: Creating an encodingProfile
      operationId: queryEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: profileId
        in: query
        description: ''
        required: true
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultQueryEncodingProfileVO'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id002
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id002
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728341-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728341.md
    delete:
      summary: deleteEncodingProfile
      deprecated: false
      description: delete encodingProfile
      operationId: deleteEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: profileId
        in: query
        description: ''
        required: true
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema: &id003
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: *id003
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id003
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728342-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728342.md
    put:
      summary: encodingProfile
      deprecated: false
      description: Update an encodingProfile
      operationId: encodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditEncodingProfileDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileApiVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id004
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id004
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728343-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728343.md
  /urcaller/api/v1/encodingProfile/dict:
    get:
      summary: queryEncodingProfileDict
      deprecated: false
      description: query encodingProfile dict
      operationId: queryEncodingProfileDict
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileTemplateVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id005
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id005
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728351-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728351.md
  /urcaller/api/v1/encodingProfiles:
    get:
      summary: queryEncodingProfiles
      deprecated: false
      description: Query the encodingProfile list
      operationId: queryEncodingProfiles
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: profileName
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultListSingleTierEncodingProfileRes'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id006
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id006
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728349-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728349.md
  /urcaller/api/v2/encodingProfile:
    post:
      summary: createEncodingProfile
      deprecated: false
      description: Creating an encodingProfile
      operationId: createEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EncodingProfileDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileApiVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id007
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id007
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728344-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728344.md
    get:
      summary: queryEncodingProfile
      deprecated: false
      description: Creating an encodingProfile
      operationId: queryEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: profileId
        in: query
        description: ''
        required: true
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultQueryEncodingProfileVO'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id008
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id008
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728345-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728345.md
    delete:
      summary: deleteEncodingProfile
      deprecated: false
      description: delete encodingProfile
      operationId: deleteEncodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: profileId
        in: query
        description: ''
        required: true
        schema:
          type: string
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema: &id009
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: *id009
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id009
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728346-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728346.md
    put:
      summary: encodingProfile
      deprecated: false
      description: Update an encodingProfile
      operationId: encodingProfile
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditEncodingProfileDTO'
            example: ''
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileApiVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id010
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id010
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/encoder-profile-api
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-256728347-run
      x-source-doc: https://docs.tvunetworks.cn/api-256728347.md
  /urcaller/api/v2/encodingProfile/dict:
    get:
      summary: queryEncodingProfileDict
      deprecated: false
      description: query encodingProfile dict
      operationId: queryEncodingProfileDict
      tags:
      - Input&Output Module API/encoder-profile-api
      - encoder-profile-api
      parameters:
      - name: SID
        in: header
        description: session value
        required: true
        example: ''
        schema:
          type: string
          examples:
          - A31BEAA85D364ECB91C4DB6A22517584
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseResultProfileTemplateVo'
          headers: {}
          x-apifox-name: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema: &id011
                $ref: '#/components/schemas/ResponseResult'
          headers: {}
          x-apifox-name: Bad Request
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Result'
          headers: {}
          x-apifox-name: Unauthorized
        '405':
          description: Method Not Allowed
          content:
            '*/*':
              schema: *id011
          headers: {}
          x-apifox-name: '405'
      security: []
      x-apifox-folder: Input&Output Module API/

# --- truncated at 32 KB (61 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tvu-networks/refs/heads/main/openapi/tvu-networks-input-and-output-module-api-openapi.yml