AuthnAuthzAPI
Get Started
Get Started
  1. Authentication
  • Overview
  • Registration & Onboarding
    • Register a new user
      POST
    • Verify email address
      POST
    • Resend verification code
      POST
  • Authentication
    • Login user
      POST
    • Logout user
      POST
    • Request a password reset email
      POST
    • Verify password reset token
      POST
    • Update password
      POST
    • Refresh access token
      POST
    • Get current authenticated user
      GET
  • OAuth Authentication
    • OAuth authentication
      GET
    • OAuth callback
      GET
  • Session Management
    • Get all sessions
      GET
    • Revoke session
      DELETE
    • Revoke all sessions
      DELETE
  • Profile Management
    • View profile information
      GET
    • Update profile information
      PATCH
  1. Authentication

Logout user

Developing
POST
/auth/logout
Terminates the authenticated user’s session by invalidating the active authentication tokens and session identifiers associated with the request. Depending on the authentication mechanism, this may involve revoking a refresh token, and clearing server-side session data and cookies.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Cookie Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Validation Error
🟠401Token Missing
🟠401Invalid Token
🟠401Token Expired
🟠403Account Soft Deleted
🟠403Account Deactivated
🟠403Account Locked
🟠403Account Not Verified
🟠401Session Not Found
🟠401Session Revoked
🟠401Session Expired
🟠429Rate Limit Exceeded
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:3000/api/v1/auth/logout' \
--header 'Authorization: Bearer <token>' \
--header 'Cookie: rt='
Response Response Example
200 - Example
{
    "status": "success",
    "message": "Logged out successfully."
}
Modified at 2026-07-09 22:42:50
Previous
Login user
Next
Request a password reset email
Built with