Skip to content

Commit

Permalink
✨ 프로필 위젯 삭제 API
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfogSW committed Nov 11, 2024
1 parent 2214f58 commit 403c9e7
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,30 @@ paths:
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/InternalServerError'
delete:
summary: 프로필 위젯 삭제
description: 현재 사용자의 프로필 위젯을 삭제합니다.
tags:
- users
operationId: deleteProfileWidget
security:
- BearerAuth: [ ]
parameters:
- in: query
name: type
required: true
schema:
$ref: '#/components/schemas/ProfileWidgetType'
description: 삭제할 프로필 위젯 타입
responses:
'204':
description: 프로필 위젯 삭제 성공
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/InternalServerError'

/auth/token/refresh:
post:
Expand Down Expand Up @@ -280,7 +304,7 @@ paths:
items:
$ref: '#/components/schemas/Location'
'404':
$ref: '#/components/responses/NotFound'
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'

Expand Down

0 comments on commit 403c9e7

Please sign in to comment.