PostUsers2FALoginErrorResponse

PostUsers2FALoginErrorResponse

2FA(2단계 인증) 로그인이 실패했을 때의 응답 스키마예요. 에러 상세(detail) 문자열을 반환해요.

출처: 문서

본문

2FA(2단계 인증) 로그인이 실패했을 때의 응답 스키마예요. 에러 상세(detail) 문자열을 반환해요.

실제 JSON 스키마는 다음과 같아요.

{
  "description": "failed second factor login response.",
  "examples": [
    {
      "detail": "Incorrect authentication credentials"
    }
  ],
  "properties": {
    "detail": {
      "description": "Description of the error.",
      "example": "Incorrect authentication credentials",
      "type": "string"
    }
  },
  "type": "object"
}

더 알아보기