get_one.yaml 374 B

123456789101112131415161718
  1. operationId: userGetOne
  2. summary: Get One
  3. security:
  4. - UserAuth: []
  5. description: Retrieve the user data for a user
  6. tags: [User]
  7. responses:
  8. "200":
  9. description: User retrieved
  10. content:
  11. application/json:
  12. schema:
  13. $ref: "#/components/schemas/User"
  14. "401":
  15. $ref: "#/components/responses/401"
  16. "500":
  17. $ref: "#/components/responses/500"