pixiReportShippedOrders

Enabled but undocumented

Returns All orders shipped out today (0:00) until now or for a given date span

Since pixi version: LOU Official (6.3.0.4452) Additional notes:

    ShipoutOnGivenDay return orders shipped out today or on given (end) day.
    With parameter @StartDate we set start time and with parameter @EndDate we set day end time till we calculate data.
    
    Example: 
    EXEC dbo.pipiReportShippedOrders @StartDate = '2021-12-03 10:00:00.000', @EndDate = '2021-12-03 15:00:00.000'
    - we get data for 2021-12-03 between 10:00 and 15:00
    
    EXEC dbo.pipiReportShippedOrders @StartDate = '2021-12-03 00:00:00.000', @EndDate = '2021-12-03 00:00:00.000'
    - we get data for 2021-12-03 between 00:00 and 00:00, probably will get 0, unless we have ship out at 00:00:000 time.
    
    EXEC dbo.pipiReportShippedOrders @StartDate = '2021-12-01 00:00:00.000', @EndDate = '2021-12-03 15:00:00.000'
    - we get data for 2021-12-03 between 00:00 and 15:00

Request

POST https://apigateway.descartes.com/tms/pixi/pixiReportShippedOrders

Request body

Name Type Required Description
ShopID string false

Filter by shop

Type: varchar(3)

Default value:

Example: abcdefg

Available from: LOU Official (6.3.0.4452)

EndDate string false

End for shipped out orders

Type: datetime

Default value:

Example: YYYY-MM-DD hh:mm:ss

Available from: LOU Official (6.3.0.4452)

StartDate string false

Start for shipped out orders

Type: datetime

Default value:

Example: YYYY-MM-DD hh:mm:ss

Available from: LOU Official (6.3.0.4452)


Response

1. Shipped out values

Name Type Description
ShipoutOnGivenDay string

Orders shipped out today or on given (end) day, See Additional Notes

Type: varchar (10)

Available from: 25.06 (25.6.0.58802)

ShipoutInGivenMonth string

Orders shipped out in whole month, from 1st until given date (from @EndDate)

Type: varchar (10)

Available from: 25.06 (25.6.0.58802)

ShipoutOnPreviousDay string

Orders shipped out the day before (from @EndDate)

Type: varchar (10)

Available from: 25.06 (25.6.0.58802)

ShipoutInPreviousMonth string

Orders shipped out in previous month (from @EndDate)

Type: varchar (10)

Available from: 25.06 (25.6.0.58802)