Skip to content

찜하기

jongchan lee edited this page Jul 9, 2019 · 12 revisions
  • 찜하기

    이종찬

    Method URL Description
    POST /goods/scrap 찜하기
    • 요청 헤더

      Content-Type : application/json
      
      authorization
    • 요청 바디

      {
         goodsIdx : "굿즈 아이디",
         goodsScrapPrice  : "굿즈 스크랩 가격"
         label : "라벨",
         options : "(Json 객체) 견적 데이터" 
      }
      
      options 예시) [{"optionName": "색상","optionValue": "빨강색"},{"optionName": "사이즈","optionValue": "M"}]
    • 응답 성공

      {
          "message": "Success",
          "data": {}
      }
    • 응답 실패

      // status : 401
      {
          "message": "jwt expired"
      }
      // status : 401 jwt 안넣어주었을때
      {
          "message": "jwt must be provided"
      }
      // status : 401 해당 굿즈에 이미 같은 견적이 있는 경우
      {    
          "message": "already existed option"
      }	
      // status : 401 해당 굿즈에 이미 같은 라벨이 있는 경우
      {    
          "message": "already existed label"
      }	
Clone this wiki locally