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

    ValidationErrorResponseDto

    {
        "status": "fail",
        "statusCode": 400,
        "message": "Validation failed",
        "details": {
            "fieldErrors": {
                "email": "Invalid email address",
                "password": "Password must be at least 8 characters"
            }
        }
    }
    Built with