| 12345678910111213141516171819202122 |
- operationId: userGetOne
- summary: Get One
- security:
- - UserAuth: []
- description: User get their own data from database
- tags: [User]
- responses:
- "200":
- description: User retrieved
- content:
- application/json:
- schema:
- $ref: "#/components/schemas/User"
- "400":
- $ref: "#/components/responses/400"
- "401":
- $ref: "#/components/responses/401"
- "404":
- $ref: "#/components/responses/404"
- "500":
- $ref: "#/components/responses/500"
|