Order Claim Dashboard
Function Description
Retrieves purchase conversion rate information by customer journey for the BO(MD) dashboard.
Detailed Description
Provides order sales status information based on the current day / last 7 days / last 30 days.
If the site parameter is not set to "All", only information for the corresponding site is provided.
The purchase conversion rate is the ratio of completed orders to visits.
Revision History
Release v2.00_240827: Created purchase conversion rate by customer journey for dashboard
Access Token
Search Dashboard Customer Journey Purchase Conversion Rate Section Request DTO
Search Period Type
0Site No.
1Success
Search Dashboard Customer Journey Purchase Conversion Rate Section Response DTO
Purchase Conversion Rate of Main Page Visits
30Increase Rate of Purchase Conversion Rate of Main Page Visits
30Purchase Conversion Rate of Product Detail Page Visits
30Increase Rate of Purchase Conversion Rate of Product Detail Page Visits
30Purchase Conversion Rate of Cart Page Visits
30Increase Rate of Purchase Conversion Rate of Cart Page Visits
30Purchase Conversion Rate of Order Page Visits
30Increase Rate of Purchase Conversion Rate of Order Page Visits
30Business processing error details
POST /api/order/v1/dashboard/getVisitToOrderDashBoard HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"statusPeriod": "0",
"siteNo": "1"
}{
"main": 30,
"mainRate": 30,
"goodsDetail": 30,
"goodsDetailRate": 30,
"basket": 30,
"basketRate": 30,
"orderSheet": 30,
"orderSheetRate": 30,
"recentWeeklyList": [
{
"agrtDt": "20230816",
"visitMain": 100,
"visitGoodsDetail": 100,
"visitBasket": 100,
"visitOrderSheet": 100
}
]
}Function Description
Looks up the BO dashboard overview information.
Detailed Description
Provides order/sales status information for today / the last 7 days / the last 30 days.
If the site parameter is not "all", provides information only for the corresponding site.
Number of purchasing customers is the number of users who placed orders. (Returns and cancellations are not counted.)
Number of visits is the number of visitors to FO.
Purchase conversion rate is the ratio of order completions to visits.
Sign-up conversion rate is the ratio of sign-ups to visits.
Average order is the average amount of all customer orders during the lookup period.
Revision History
Release v2.00_240827: Created dashboard overview
Access Token
Search Dashboard Overview Section Request DTO
Search Period Type
0Site No.
1Success
Dashboard Overview Section Retrieval Response DTO
Number of Purchasing Customers
100Increase Rate of Purchasing Customers vs. Previous Day
10Number of Visits
100Increase Rate of Visits vs. Previous Day
10Purchase Conversion Rate per Visit
30Increase Rate of Purchase Conversion Rate per Visit vs. Previous Day
10Registration Conversion Rate per Visit
30Increase Rate of Registration Conversion Rate vs. Previous Day
10Average Order Amount
15000Increase Rate of Average Order Amount vs. Previous Day
10Business processing error details
POST /api/order/v1/dashboard/getOverviewDashBoard HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"statusPeriod": "0",
"siteNo": "1"
}{
"ordManCnt": 100,
"ordManCntRate": 10,
"visitManCnt": 100,
"visitManCntRate": 10,
"visitToOrder": 30,
"visitToOrderRate": 10,
"visitToJoin": 30,
"visitToJoinRate": 10,
"orderAverage": 15000,
"orderAverageRate": 10
}Function Description
Looks up order/sales status information.
Detailed Description
Aggregation type code (agrtGb) is a required parameter.
If the requested aggregation type code is '01', provides order status information.
If the requested aggregation type code is '02', provides sales status information.
Provides order/sales status information for today / the last 7 days / the last 30 days.
If the site parameter is not "all", provides information only for the corresponding site.
When entering via PO, provides information only for the corresponding vendor.
Revision History
Release v2.00_240711: Fixed so that the number-of-orders count is no longer multiplied into the base order/cancellation amount displayed
Release v2.00_240827: Modified due to full dashboard renewal
Code Reference
Aggregation type code (agrtGb): 01: Order status aggregation code, 02: Sales status aggregation code
Access Token
Search Order/Sales Status Request DTO
Aggregation Type
01Search Period Type
0Vendor No.
1000002Site No.
1Success
Search Order/Sales Status Response DTO
Today's Order/Sales Amount
100Increase Rate of Order/Sales vs. Previous Day
10Today's Order/Sales Count
100Increase Rate of Order/Sales Count vs. Previous Day
10Today's Cancellation/Return Amount
100Increase Rate of Cancellation/Return Amount vs. Previous Day
10Cancellation/Return Count vs. Previous Day
100Increase Rate of Cancellation/Return Count vs. Previous Day
10Business processing error details
POST /api/order/v1/dashboard/getOrderSalesDashBoard HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 66
{
"agrtGb": "01",
"statusPeriod": "0",
"entrNo": "1000002",
"siteNo": "1"
}{
"ordSaleAmt": 100,
"ordSaleAmtRate": 10,
"ordSaleCnt": 100,
"ordSaleCntRate": 10,
"cnclRtnAmt": 100,
"cnclRtnAmtRate": 10,
"cnclRtnCnt": 100,
"cnclRtnCntRate": 10,
"recentWeeklyList": [
{
"agrtDt": "20230816",
"ordSaleAmt": 100,
"cnclRtnAmt": 100
}
]
}Function Description
Provides order status/claim status information in PO.
Detailed Description
Order/claim classification (ordCntGb) and vendor name (entrNo) are required parameters.
If order/claim classification (ordCntGb) is order (O), displays the count for the following order history status codes (OM005).
Order Completed (12), Delivery Instructed (21), Shipment Instructed (22), Awaiting Shipment (23), Shipment Completed (26)
If order/claim classification (ordCntGb) is claim (C), displays the count for the following order history status codes (OM005).
Claim Received (32), Collection Instructed (34), Collection Confirmed (35)
Notes
Looks up the corresponding status information only when order/claim classification (ordCntGb) is order (O) or claim (C).
Revision History
Release v2.00_240827 : Added condition based on order received datetime within the most recent 30 days
Access Token
Order Status/Claim Status Request DTO
Order/Claim Type O: Order, C: Claim
OExample: OVendor No.
1000002Success
Order Status/Claim Status Response DTO
Order Claim Status Name
주문완료OM005 (Order Detail Status Code) 10: REPAY_REQ(Repayment Requested) ,11: ORDER_ACCEPT(Order Accepted) ,12: ORDER_COMPLETE(Order Completed) ,13: ORDER_CANCEL(Order Cancelled) ,21: DELIVERY_ORDER(Delivery Instructed) ,22: SHIPPING_ORDER(Shipment Instructed) ,23: SHIPPING_WAIT(Awaiting Shipment) ,25: SHIPPING_CONFIRM(Shipment Confirmed) ,26: SHIPPING_FINISH(Shipment Completed) ,27: DELIVERY_FINISH(Delivery Completed) ,31: RETURN_APPLY(Payment Pending) ,32: RETURN_ACCEPT(Return Accepted) ,33: RETURN_CANCEL(Return Cancelled) ,34: WITHDRAWAL_ORDER(Collection Instructed) ,35: WITHDRAWAL_CONFIRM(Collection Confirmed) ,36: WITHDRAWAL_FINISH(Collection Completed) ,37: RETURN_FINISH(Return Completed)
10Possible values: Quantity by Order Claim Status
0Business processing error details
POST /api/order/v1/dashboard/getDashBoardOrderClaimCount HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 35
{
"ordCntGb": "O",
"entrNo": "1000002"
}[
{
"ordDtlStatNm": "주문완료",
"ordDtlStatCd": "10",
"cnt": 0
}
]Last updated