--- title: "Sign Out Current Session" description: "Sign out of the current session and invalidate the refresh token" api: "DELETE /auth/sessions/current" --- ## Request No request parameters or body required. ## Response Successful response indicating the session has been terminated and the refresh token invalidated. ```bash cURL curl -X DELETE "https://api.stack-auth.com/auth/sessions/current" \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN" ```