Ends the current user session by deleting theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Nyverie/reservafacil/llms.txt
Use this file to discover all available pages before exploring further.
token cookie from the browser. Because ReservaFácil uses stateless JWT authentication, there is no server-side session record to revoke — logging out is achieved entirely by removing the cookie so that subsequent requests no longer carry a credential. No request body or authentication header is needed.
Request
Authorization header. The browser’s existing token cookie is deleted regardless of whether it is present or valid.
Response
200 — Success
Always
true. Returned even if no token cookie was present on the request.The response calls
response.cookies.delete('token'), which instructs the browser to immediately expire and remove the cookie. After this response is received, GET /api/auth/me will return 401.Error Responses
This endpoint does not return application-level errors. Network or infrastructure failures may produce a generic500 from the hosting platform.