Apache OpenMeetings WbService API

The WbService API from Apache OpenMeetings — 4 operation(s) for wbservice.

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/apache-openmeetings-wbservice-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

apache-openmeetings-wbservice-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Apache OpenMeetings REST CalendarService WbService API
  description: The OpenMeetings REST API provides endpoints for managing rooms, users, recordings, calendars, file uploads, whiteboards, and groups. It supports SOAP API for legacy integrations and plugin APIs for LMS integration.
  version: 9.0.0
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  contact:
    url: https://openmeetings.apache.org/
servers:
- url: https://{host}:5443/openmeetings/services
  description: Apache OpenMeetings REST API server
  variables:
    host:
      default: localhost
tags:
- name: WbService
paths:
  /wb/cleanslide/{roomid}/{wbid}/{slide}:
    get:
      tags:
      - WbService
      description: This method will do the same as clean slide in the room (except for there will be no UNDO)
      operationId: cleanSlide
      parameters:
      - name: sid
        in: query
        description: The SID of the User. This SID must be marked as Loggedin
        required: true
        schema:
          type: string
      - name: roomid
        in: path
        description: id of the room to clean
        required: true
        schema:
          type: integer
          format: int64
      - name: wbid
        in: path
        description: id of the white board to clean
        required: true
        schema:
          type: integer
          format: int64
      - name: slide
        in: path
        description: slide number (zero based)
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: serviceResult object with the result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceResultWrapper'
        '500':
          description: Error in case of invalid credentials or server error
      summary: Apache OpenMeetings CleanSlide
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /wb/cleanwb/{roomid}/{wbid}:
    get:
      tags:
      - WbService
      description: This method will do the same as clean WB in the room (except for there will be no UNDO)
      operationId: cleanWb
      parameters:
      - name: sid
        in: query
        description: The SID of the User. This SID must be marked as Loggedin
        required: true
        schema:
          type: string
      - name: roomid
        in: path
        description: id of the room to clean
        required: true
        schema:
          type: integer
          format: int64
      - name: wbid
        in: path
        description: id of the white board to clean
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: serviceResult object with the result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceResultWrapper'
        '500':
          description: Error in case of invalid credentials or server error
      summary: Apache OpenMeetings CleanWb
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /wb/resetwb/{id}:
    get:
      tags:
      - WbService
      description: "This method will remove all whiteboards from given room\n and create empty one(s) for room files specified"
      operationId: resetWb
      parameters:
      - name: sid
        in: query
        description: The SID of the User. This SID must be marked as Loggedin
        required: true
        schema:
          type: string
      - name: id
        in: path
        description: id of the room to clean
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: serviceResult object with the result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceResultWrapper'
        '500':
          description: Error in case of invalid credentials or server error
      summary: Apache OpenMeetings ResetWb
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /wb/uploadwb/{type}:
    post:
      tags:
      - WbService
      description: This method will receive WB as binary data (png) and store it to temporary PDF/PNG file
      operationId: uploadWb
      parameters:
      - name: sid
        in: query
        description: The SID of the User. This SID must be marked as Loggedin
        required: true
        schema:
          type: string
      - name: type
        in: path
        description: the type of document being saved PNG/PDF
        required: true
        schema:
          type: string
      requestBody:
        content:
          '*/*':
            schema:
              required:
              - data
              type: object
              properties:
                data:
                  type: string
                  description: binary data
      responses:
        '200':
          description: serviceResult object with the result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceResultWrapper'
        '500':
          description: Error in case of invalid credentials or server error
      summary: Apache OpenMeetings UploadWb
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ServiceResult:
      type: object
      properties:
        message:
          type: string
        type:
          type: string
    ServiceResultWrapper:
      type: object
      properties:
        serviceResult:
          $ref: '#/components/schemas/ServiceResult'
      example:
        serviceResult:
          message: 9dbb6907-61fc-42c0-a2b2-5dbfbe053ac6
          type: SUCCESS