Skip to content

Order change status - Test only

Function active only in test environment.
This endpoint serves to advance the order status. The endpoint responds with "true" when the transaction is confirmed otherwise it receives an error.

  • Method: POST
  • URL: /store/reseller/changestatus?culture={culture}&apikey={apikey}

Request

Name Description Type
resellerOrderKey External order key String
status Status to move order String

Status

  • setPaid
    • Set the order as paid
  • setTrasmitted
    • Set all items communicated to the manufacturer
  • setProcessing
    • Set all items as accepted by the manufacturer
  • setToHub
    • Set all items as arrived in stock
  • setReadyToShipping
    • Set all items as ready to ship. Fake pickingUnits are created
  • setToShipping
    • Set all items as shipped from warehouse
graph TD;
    setPaid-->setTrasmitted;
    setTrasmitted-->setProcessing;
    setProcessing-->setToHub;
    setToHub-->|Prepare PickingUnit| setReadyToShipping;    
    setReadyToShipping-->|Client request shippping| setToShipping;

This function is used to see the progress of the internal order status. The order of the commands must be respected.