mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2025-12-09 06:13:10 +00:00
22 lines
479 B
YAML
22 lines
479 B
YAML
get:
|
|
tags:
|
|
- Profile
|
|
operationId: fetchProfile
|
|
summary: Fetch user profile
|
|
description: Get the user profile details
|
|
security:
|
|
- userApiKey: []
|
|
responses:
|
|
'200':
|
|
description: Success
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/user'
|
|
'401':
|
|
description: Unauthorized
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/bad_request_error'
|