tanochan-sakonyan / backend

0 stars 0 forks source link

API実装:メンバー削除 #9

Open UnagamiKanta opened 1 day ago

UnagamiKanta commented 1 day ago
  1. エンドポイント
    /events/{eventId}/members
    @DELETE
  2. FEが渡すもの { "memberIdList": [ "Integer" ] }
  3. BEが返すもの
    
    { 
     "eventId": "Integer", 
     "members": [{ 
      "memberId": "Integer", 
      "memberName": "String", 
      "status": "Int"
     }] //members 
    }
UnagamiKanta commented 1 day ago