Skip to content

API_Documentation.md

이희진 edited this page Oct 31, 2025 · 2 revisions

🧩 API 문서

인증 POST /api/auth/login

{
  "email": "user@example.com",
  "password": "password123"
}


{
  "accessToken": "JWT_TOKEN",
  "refreshToken": "REFRESH_TOKEN"
}

주문 생성

POST /api/orders

{
  "productId": 12,
  "quantity": 2,
  "address": "서울특별시 강남구 ..."
}

Clone this wiki locally