You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
801 B
YAML
33 lines
801 B
YAML
delete:
|
|
tags:
|
|
- topics
|
|
summary: Delete a topic event
|
|
description: This operation deletes a single topic event from the topic
|
|
parameters:
|
|
- in: path
|
|
name: tid
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: a valid topic id
|
|
example: 1
|
|
- in: path
|
|
name: eventId
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: a valid topic event id
|
|
example: 1
|
|
responses:
|
|
'200':
|
|
description: Topic event successfully deleted
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
status:
|
|
$ref: ../../../../components/schemas/Status.yaml#/Status
|
|
response:
|
|
type: object
|
|
properties: {} |