[TIL] 5월 7일

yeon·2021년 5월 9일
0

API score조회 수정과 POST 방식 추가 완료

선수별 record 추가

  • POST
  • /teams/{teamId}/{memberId}/record
{
    "atBat": 4,
    "hit": 2,
    "out": 2
}

팀별 score 추가

  • POST
  • /games/{teamId}/score
{
    "inningNumber": 1,
    "score": 1
}

팀별 score 조회

  • GET
  • /games/{gameId}/scores
{
    "gameId": 1,
    "teamScores": [
        {
            "teamId": 1,
            "teamName": "KIA 타이거즈",
            "scores": [
                {
                    "inningNumber": 1,
                    "score": 1
                },
                {
                    "inningNumber": 2,
                    "score": 0
                }
            ]
        },
        {
            "teamId": 2,
            "teamName": "NC 다이노즈",
            "scores": [
                {
                    "inningNumber": 1,
                    "score": 1
                }
            ]
        }
    ]
}

0개의 댓글