feat(tester): add UpdateParticipant endpoint

This commit is contained in:
Vyacheslav1557 2025-03-08 11:41:50 +05:00
parent 9be6a6ca98
commit d021cf202f

View file

@ -291,6 +291,26 @@ paths:
responses: responses:
"200": "200":
description: OK description: OK
patch:
operationId: UpdateParticipant
security:
- bearerAuth: [ ]
parameters:
- name: participant_id
in: query
required: true
schema:
type: integer
format: int32
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateParticipantRequest'
responses:
"200":
description: OK
components: components:
schemas: schemas:
Problem: Problem:
@ -641,6 +661,11 @@ components:
properties: properties:
title: title:
type: string type: string
UpdateParticipantRequest:
type: object
properties:
name:
type: string
securitySchemes: securitySchemes:
bearerAuth: bearerAuth:
type: http type: http