결제 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki

결제

메소드 경로 설명
GET /orders/pay 결제

요청 헤더

{
    "Content-Type": "application/json",
    "userIndex": 1,
}

응답 성공

{
    "status": 200,
    "message": "결제 호출 성공"
}

응답 실패

{
    "status": 400,
    "message": "userIndex에 해당하는 값이 유효하지 않습니다. userIndex 값을 확인해주세요."
}
{
    "status": 500,
    "message": "INTERNAL_SERVER_ERROR"
}