totalToBeDelivered includes active delivery and some return/failed statuses.Authorization: Bearer <static_token>Content-Type: application/json (for POST)curl --location --request GET '/order/ShipmentsCount' \
--header 'Authorization: Bearer <token>'{
"data": {
"totalShipment": 1336,
"totalToBePickedUp": 76,
"totalToBeDelivered": 18,
"totalDelivered": 1232,
"totalToBeReturned": 0,
"totalReturned": 0,
"totalCanceled": 8
}
}