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.
18 lines
418 B
YAML
18 lines
418 B
YAML
4 years ago
|
get:
|
||
|
tags:
|
||
|
- topics
|
||
|
summary: Get a topic's teaser post
|
||
|
parameters:
|
||
|
- name: topic_id
|
||
|
in: path
|
||
|
required: true
|
||
|
schema:
|
||
|
type: string
|
||
|
example: 1
|
||
|
responses:
|
||
|
"200":
|
||
|
description: "A JSON object containing the teaser post for a topic"
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
$ref: ../../../components/schemas/PostsObject.yaml#/PostsObject
|