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

Collection

Update Collection Progress Status (BO)

post

Function Description

  • [BO] Updates the collection status.


Detailed Description

  • Updates the collection status when the collection-instruction-processing button is clicked on the BO collection confirmation processing screen, or the collection-completion button is clicked on the collection completion processing screen.

  • The current order history status (OM005), the order history status to update to (OM005), and the collection-progress-status update target list are required.


Revision History

  • Release v2.00_240729 : Allowed null for delivery company code (hdcCd) and tracking number (invNo) for e-coupon deliveries, updated order delivery information (OP_ORD_DELI_INFO) with deduplication by delivery number and prioritized saving of data with collection status 'Y'

Header parameters
AuthorizationanyOptional

Access Token

Body
ordDtlStatCdstringRequired

Current Order Progress Status

updateTargetOrdDtlStatCdstringRequired

Order Progress Status to Update

Responses
200

Success

No content

post/v1/delivery/withdrawProcess/saveWithdrawStatUpdateProcess
POST /api/order/v1/delivery/withdrawProcess/saveWithdrawStatUpdateProcess HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 190

{
  "ordDtlStatCd": "text",
  "updateTargetOrdDtlStatCd": "text",
  "withdrawStatUpdateSaveInfoList": [
    {
      "ordNo": "text",
      "deliNo": "text",
      "hdcCd": "text",
      "invNo": "text",
      "wthdFnshGbCd": "text",
      "wthdYn": "Y"
    }
  ]
}

No content

Collection Instruction (BO)

post

Function Description

  • [BO] Processes collection instructions.


Detailed Description

  • Processes collection instructions when the collection-instruction-processing button is clicked on the BO collection instruction processing screen.

  • The collection-instruction target list is required.

  • Changes orders in order history status (OM005) return-received (32) to collection-instructed (34) status.

Header parameters
AuthorizationanyOptional

Access Token

Body
Responses
200

Success

No content

post/v1/delivery/withdrawProcess/saveWithdrawInstructProcess
POST /api/order/v1/delivery/withdrawProcess/saveWithdrawInstructProcess HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "withdrawInstructHandlingSaveInfoList": [
    {
      "ordNo": "text",
      "deliNo": "text",
      "rtnQty": 1
    }
  ]
}

No content

Last updated