## Log out `DELETE https://getkollek.com/api/logout` Revoke the token used to make the request. Other tokens of the user stay valid. **Returns:** A confirmation message. ### Example request ```bash curl https://getkollek.com/api/logout \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "message": "Logged out successfully", "status": 200 } ```