auth

users

products

stores

orders

payments

Options

결제 생성 POST /api/payments 마스터,사용자,상점 { "order_id": "UUID", "payment_method": "string", "price": "decimal" } { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } 결제 상세 조회 GET /api/payments/{payment_id} 마스터,사용자,상점 { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp", "updated_at": "timestamp" } 결제 목록 전체 조회 (고객) GET /api/payments/customer 사용자 { "page": "int", "size": "int"

} { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 목록 전체 조회 (가게) GET /api/payments/store 마스터,상점 { "page": "int", "size": "int"

} { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 목록 전체 조회 (관리자 권한) GET /api/payments 마스터 { "page": "int",

"size": "int" } { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 내역 삭제 DELETE /api/payments/{payment_id} 마스터 { "payment_id": "UUID", "deleted_at": "timestamp" }


결제 생성 POST /api/payments 마스터,사용자,상점 { "order_id": "UUID", "payment_method": "string", "price": "decimal" } { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } 결제 상세 조회 GET /api/payments/{payment_id} 마스터,사용자,상점 { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp", "updated_at": "timestamp" } 결제 목록 전체 조회 (고객) GET /api/payments/customer 사용자 { "page": "int", "size": "int"

} { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 목록 전체 조회 (가게) GET /api/payments/store 마스터,상점 { "page": "int", "size": "int"

} { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 목록 전체 조회 (관리자 권한) GET /api/payments 마스터 { "page": "int",

"size": "int" } { "payments": [ { "payment_id": "UUID", "order_id": "UUID", "payment_method": "string", "price": "decimal", "status": "string", "created_at": "timestamp" } ], "total_pages": "int", "current_page": "int" } 결제 내역 삭제 DELETE /api/payments/{payment_id} 마스터 { "payment_id": "UUID", "deleted_at": "timestamp" }

옵션 생성

옵션 상세 조회

옵션 목록 조회