Order Sheet
Provides order sheet management features that let users create orders and complete payment. Order sheets are classified according to various situations and conditions, and support a smooth ordering process by validating and retrieving various information such as the user's request information, product, delivery, and payment details.
Key Features
Order Sheet Entry and Validation
The order sheet can be entered from the product detail page or the cart screen, and only members aged 15 or older, or non-members who have passed verification, can access the order sheet.
Various Order Sheet Types
By order type, there are general orders and gifting order sheets, and by member information, they are classified into member orders and non-member order sheets.
Order Information Lookup and Validation
When first entering the order sheet, the orderer's age, member status for gifting orders, and verification status for non-member orders are validated.
Benefit and Payment Information Lookup
Among the payment methods available for each ordered product, duplicate methods are classified, and the information required for the payment method is retrieved and displayed.
Delivery Fee and Delivery Group Management
Delivery groups are divided according to each product's delivery information to look up delivery fees, and additional delivery fees may be charged depending on whether the delivery address is a remote island/mountainous area.
Gift Promotion and Benefit Lookup
For member order sheets, if a gift promotion exists, a gift promotion popup is displayed before payment, and the available benefit information and maximum benefit information are retrieved in the coupon and benefit popup.
Order Creation and Completion
After validating the required values needed for order creation and issuing an order number, once the authentication process required for payment is complete, the order creation API is called to complete the order.
If the order succeeds, the order completion information lookup API is called on the order completion page to display the order information to the user.
Process Definition

API Function List
Order Sheet Entry Validation
Performs user validation when entering the order sheet.
Order
POST
Order Sheet Lookup
Retrieves order sheet information.
Order sheet information includes member, payment method, order product, delivery, promotion, and accumulation information.
Order
POST
🔗View API > 1) Member information lookup /api/member/v1/front/memberInfo 2) Non-member information lookup /api/member/v1/front/nonMemberInfo 3) Member default delivery address lookup /api/member/v1/front/dlvpInfo 4) Available payment methods by product lookup /api/goods/v1/detail/goodsPayMeanList
Order Sheet Gift Promotion Lookup
Retrieves gift promotions using the ordered product information.
If a gift promotion exists, a popup containing the gift promotion information is displayed before payment.
Order
POST
Order Sheet Delivery Fee Lookup
Retrieves the delivery fee for the order information.
Order
POST
Order Sheet Accumulation Information Lookup
Retrieves accumulation information for the order information.
Order
POST
Order Number Issuance
Issues the order number needed for order creation information.
Order
GET
Place Order
Creates the order. If the order succeeds, a notification (AlimTalk) and email are sent to the orderer.
Order
POST
🔗View API > 1) Member information lookup /api/member/v1/front/memberInfo 2) Employee discount limit update /api/member/v1/staff/dcLimIncDec 3) Product stock update /api/goods/v1/order/stockUpdate
Order Completion Information Lookup
Retrieves order completion information after a successful order.
An exception occurs if a claim has been processed for the requested order.
Order
POST
Terminology
Delivery Group
A set of products that can be delivered together, grouped based on information such as product number, combined-delivery eligibility, partner number, delivery policy number, sales method, delivery method, scheduled delivery date/time, and expected shipping date/time. Delivery fees are calculated per group.
Combined Delivery
A method of delivering multiple products within an order sheet by delivery group
Other Notes
Before looking up delivery fees, delivery groups are created using each product's detailed information. (Combined-delivery eligibility, partner number, delivery policy number, sales method, delivery method, product number, scheduled delivery date/time, expected shipping date/time)
When requesting the order completion information lookup API for a non-member order, the cookie value generated through the non-member login processing API must be passed as a required parameter.