We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ca61b commit e2dada5Copy full SHA for e2dada5
openapi.yml
@@ -151,6 +151,28 @@ paths:
151
description: 'Ошибка авторизации'
152
'400':
153
description: 'Неправильный, некорректный запрос'
154
+ /tags/{tagId}/questions:
155
+ get:
156
+ summary: 'Поиск вопросов по тэгам'
157
+ parameters:
158
+ - in: path
159
+ name: tagId
160
+ schema:
161
+ type: string
162
+ required: true
163
+ description: 'Идентификатор тэга'
164
+ responses:
165
+ '200':
166
+ description: 'Вывод вопросов по определенному тэгу'
167
+ content:
168
+ application/json:
169
170
+ type: array
171
+ items:
172
173
+ $ref: '#/components/schemas/QuestionData'
174
+ '400':
175
+ description: 'Некорректный запрос'
176
/questions:
177
get:
178
summary: 'Поиск по вопросам'
0 commit comments