1. Authentication
Auto Value API
  • Reports
    • Create a valuation report
      POST
  • Authentication
    • Register a new account
      POST
    • Authenticate an existing user
      POST
    • End the current session
      POST
  • Schemas
    • CreateReportDto
    • ReportDto
    • ReportSuccessResponseDto
    • ValidationErrorDetailsDto
    • ValidationErrorResponseDto
    • ErrorResponseDto
    • CreateUserDto
    • UserDto
    • UserSuccessResponseDto
    • SignInUserDto
    • MessageSuccessResponseDto
  1. Authentication

End the current session

POST
/auth/signout
Last modified:2026-05-31 02:28:40
Maintainer:Not configured
Clears the authenticated session for the current signed-in user. The request succeeds only when a valid session already exists.

Request

None

Responses

🟢200
application/json
The authenticated session was cleared successfully.
Bodyapplication/json

🟠400
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:3000/auth/signout'
Response Response Example
200 - Example 1
{
    "status": "success",
    "message": "user logged out successfully"
}
Modified at 2026-05-31 02:28:40
Previous
Authenticate an existing user
Next
CreateReportDto
Built with