For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customer Center Provision

Look Up Member's Order Status

post

Function Description

  • Checks whether an order exists for the member.


Detailed Description

  • The customer center checks whether an order exists for the member, using the member number and order number.

Header parameters
AuthorizationanyOptional

Access Token

Body

Retrieve Order Existence Status Request DTO

Responses
200

Success

*/*
ordNostringOptional
existbooleanOptional
post/v1/customer/isOrderExist
POST /api/order/v1/customer/isOrderExist HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "isOrderExistItemList": [
    {
      "mbrNo": "100834060",
      "ordNo": "20230825O560116"
    }
  ]
}
[
  {
    "ordNo": "text",
    "exist": true
  }
]

1:1 Inquiry - My Order Product Lookup

post

Function Description

  • Retrieves the list of order claim products by member.


Detailed Description

  • Retrieves the order claim product list and total count by member, based on the requested order receipt start date and order receipt end date conditions.

Header parameters
AuthorizationanyOptional

Access Token

Body

1:1 Inquiry - My Order Product Lookup Request DTO

startOrdAccpDtmstring · dateOptional

Search Start Date (Order Receipt Date/Time)

endOrdAccpDtmstring · dateOptional

Search End Date (Order Receipt Date/Time)

Responses
200

Success

*/*
totCntinteger · int32Optional
post/v1/customer/getOrderClaimGoodsList
POST /api/order/v1/customer/getOrderClaimGoodsList HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 61

{
  "startOrdAccpDtm": "2026-01-01",
  "endOrdAccpDtm": "2026-01-01"
}
{
  "ordList": [
    {
      "ordNo": "text",
      "ordAccpDtm": "2026-01-01T00:00:00.000Z",
      "mbrNo": "text",
      "ordGbCd": "text",
      "ordManNm": "text",
      "ordGoodsList": [
        {
          "ordDtlGbCd": "text",
          "ordDtlStatCd": "text",
          "ordDtlStatDtm": "2026-01-01T00:00:00.000Z",
          "ordSeq": "text",
          "ordProcSeq": "text",
          "brandNo": "text",
          "brandNm": "text",
          "goodsNo": "text",
          "goodsNm": "text",
          "goodsImg": "text",
          "itmNo": "text",
          "itmNm": "text",
          "norPrc": 1,
          "salePrc": 1,
          "ordQty": 1
        }
      ]
    }
  ],
  "totCnt": 1
}

Last updated