ju-front / green-light

G-Order Tabling System
https://ju-front.github.io/green-light
1 stars 2 forks source link

ReceiptSignIn api구현 #55

Open kjeok00 opened 3 months ago

kjeok00 commented 3 months ago

const ReceiptSignIn = (userID, allergyData, receiptID) =>

{
/* 사용자 로그인을 하고, 사용자의 알러지 현황과 보유 쿠폰량을 개신합니다. */ 
}

request

{
"userID": string,
"allergyData": {
  "gluten": bool,
  "dairy": bool,
  "egg": bool,
  "shellfish": bool,
  "nut": bool,
  "soy": bool,
  "fish": bool,
  "celery": bool,
  "mustard": bool
 },
 "receiptID": int
}

response


{
 "coupon": int
}