Apache EventMesh Subscription API

The Subscription API from Apache EventMesh — 1 operation(s) for subscription.

OpenAPI Specification

apache-event-mesh-subscription-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Apache EventMesh Admin Client Subscription API
  description: The Apache EventMesh Admin API provides HTTP endpoints for managing the EventMesh runtime, including topic management, subscription management, event publishing, and runtime monitoring. EventMesh supports CloudEvents specification for event formatting.
  version: 1.10.0
  contact:
    name: Apache EventMesh
    url: https://eventmesh.apache.org/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:10106
  description: Default EventMesh Admin HTTP endpoint
tags:
- name: Subscription
paths:
  /subscription/query:
    get:
      summary: Apache EventMesh Query Subscriptions
      operationId: querySubscriptions
      tags:
      - Subscription
      responses:
        '200':
          description: List of subscriptions
          content:
            application/json:
              schema:
                type: object
                properties:
                  retCode:
                    type: integer
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Subscription'
components:
  schemas:
    Subscription:
      type: object
      properties:
        topic:
          type: string
        url:
          type: string
        group:
          type: string
        protocol:
          type: string