/
Shipment Dispatched

Shipment Dispatched

  • Create and Close Manifest

    1. In case of thirdPartyShipping=false

      1. Remove shippingProviderName from Request body.

      2. shippingProviderCode="Eshopbox"

    2. In case of thirdPartyShipping = true

      1. shippingProviderCode and shippingProviderName are required and value will be dynamic and equal to {{courierName}} (from the event)

        1. isCod =0 (Prepaid)

        2. isCod =1 (COD)

        In case of Prepaid shippingMethodCode = "Standard-PREPAID"

        In case of COD shippingMethodCode = "Standard-COD"

         

         

if “thirdPartyShipping” = true then
shippingProviderCode = CourierName

if “thirdPartyShipping” = false

shippingProviderCode=”Eshopbox”

{ "channel": "orderSiteID" (need to add this key in shipment events body), "shippingProviderCode": "CourierName" (if thirdPartyShipping is true) : "Eshopbox" (if thirdPartyShipping is false), "shippingProviderName": {{CourierName}} (only in case of thirdPartyShipping = true, "shippingMethodCode": "Standard-COD" (isCOD = 1) : "Standard-PREPAID" (isCOD =0) , "comments": "dispatched", "thirdPartyShipping": (need to add this key in shipment events body), "shippingPackageCodes": [ "customerOrderNumber" ] }

 

 

  • Make a POST Endpoint to call Create and Compete Manifest:
    Request Body:

{ "shippingMethodCode": "Standard-PREPAID", "channel": "SHOPIFY", "thirdPartyShipping": false, "customerOrderNumber": "MPLAGGN05318", "connectionId": 437, "courierName": "ATS", "trackingId": "266808908928" }

Related content