| 123456789101112131415161718 |
- operationId: userLogout
- summary: Logout
- security: []
- description: Remove session cookie and logout the user
- tags: [User]
- responses:
- "200":
- description: "Cookie removed and session ended (always returns '{success: true}')"
- content:
- application/json:
- schema:
- type: object
- properties:
- success:
- type: boolean
- "500":
- $ref: "#/components/responses/500"
|