diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-04-19 16:24:02 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-04-19 16:24:02 +0200 |
| commit | cc5fc184b6ea35cf8204803958fe0d29ee256735 (patch) | |
| tree | 3a8ae22310f54531f02cd0c986406505fa558e20 | |
| parent | fe968ef8eed020670abdc8b8554a766eee15e5ed (diff) | |
update
| -rw-r--r-- | lib/config/defaults.dart | 2 | ||||
| -rw-r--r-- | lib/navigation/HERENavigation.dart | 46 | ||||
| -rw-r--r-- | lib/navigation/baseNavigation.dart | 7 | ||||
| -rw-r--r-- | lib/navigation/openstreetmapNavigation.dart | 274 | ||||
| -rw-r--r-- | lib/pages/navigation_page.dart | 1 | ||||
| -rw-r--r-- | lib/services/mock_route_provider_service.dart | 16418 | ||||
| -rw-r--r-- | lib/services/storegear_api_service.dart | 9 | ||||
| -rw-r--r-- | pubspec.yaml | 2 |
8 files changed, 7346 insertions, 9413 deletions
diff --git a/lib/config/defaults.dart b/lib/config/defaults.dart index a02c74f..1f62666 100644 --- a/lib/config/defaults.dart +++ b/lib/config/defaults.dart @@ -1,4 +1,4 @@ -String program_version = '0.14 [13/04/2023]'; +String program_version = '0.15 [19/04/2023]'; bool debug_mode = false; class ShiftType { diff --git a/lib/navigation/HERENavigation.dart b/lib/navigation/HERENavigation.dart index 1ccae29..6855124 100644 --- a/lib/navigation/HERENavigation.dart +++ b/lib/navigation/HERENavigation.dart @@ -96,20 +96,22 @@ class _HERENavigationState extends BaseNavigationState { }); widget.stopCompletedEvent = eventBus.on<StopCompletedEvent>().listen((e) { - routeSectionCursor += 1; - if (routeSectionCursor >= widget.allTasks.length) { - routeSectionCursor = widget.allTasks.length - 1; + widget.routeSectionCursor += 1; + if (widget.routeSectionCursor >= widget.allTasks.length) { + widget.routeSectionCursor = widget.allTasks.length - 1; } updateHighlightedRouteSections(); - eventBus.fire(NextStopLoadedEvent(widget.allTasks[routeSectionCursor])); + eventBus.fire( + NextStopLoadedEvent(widget.allTasks[widget.routeSectionCursor])); }); widget.stopIncompletedEvent = eventBus.on<StopIncompletedEvent>().listen((e) { - routeSectionCursor -= 1; - if (routeSectionCursor < 0) routeSectionCursor = 0; + widget.routeSectionCursor -= 1; + if (widget.routeSectionCursor < 0) widget.routeSectionCursor = 0; updateHighlightedRouteSections(force: true); - eventBus.fire(NextStopLoadedEvent(widget.allTasks[routeSectionCursor])); + eventBus.fire( + NextStopLoadedEvent(widget.allTasks[widget.routeSectionCursor])); }); blacklistProvider @@ -251,14 +253,17 @@ class _HERENavigationState extends BaseNavigationState { DestinationPin pin = widget.parcelNumberPins.elementAt(i); Color color = Color.fromARGB(200, 0, 144, 138); - if (i == routeSectionCursor) color = Color.fromARGB(199, 143, 8, 31); - if (i == routeSectionCursor + 1) color = Color.fromARGB(197, 13, 36, 241); + if (i == widget.routeSectionCursor) + color = Color.fromARGB(199, 143, 8, 31); + if (i == widget.routeSectionCursor + 1) + color = Color.fromARGB(197, 13, 36, 241); if (destinationPinIsInBlacklist(widget.parcelNumberPins[i])) { color = Color.fromRGBO(143, 8, 31, 0.78); } - bool forceUpdateThisPin = - force && (i > routeSectionCursor - 3 && i < routeSectionCursor + 3); + bool forceUpdateThisPin = force && + (i > widget.routeSectionCursor - 3 && + i < widget.routeSectionCursor + 3); if (!shouldDoublePlannedAddressBeVisible(pin)) { pin.pin?.unpin(); @@ -266,7 +271,8 @@ class _HERENavigationState extends BaseNavigationState { continue; } - if (i > routeSectionCursor + 1 && i < routeSectionCursor + maxPins) { + if (i > widget.routeSectionCursor + 1 && + i < widget.routeSectionCursor + maxPins) { if (forceUpdateThisPin) { pin.pin?.unpin(); pin.pin = null; @@ -281,7 +287,8 @@ class _HERENavigationState extends BaseNavigationState { pin.pin = null; } - if (i == routeSectionCursor || i == routeSectionCursor + 1) { + if (i == widget.routeSectionCursor || + i == widget.routeSectionCursor + 1) { var widgetPin = createPinWidget(pin, color, widget.destinationCoords[i]); pin.pin = widgetPin; @@ -296,15 +303,17 @@ class _HERENavigationState extends BaseNavigationState { MapPolyline path = _pathSections.elementAt(i); // previous section - if (i == routeSectionCursor - 1) { + if (i == widget.routeSectionCursor - 1) { section.lineColor = Color.fromARGB(160, 168, 113, 108); path.lineColor = Color.fromARGB(0, 255, 255, 255); } // current and next 5 sections - else if (i >= routeSectionCursor && - i < routeSectionCursor + maxSections) { + else if (i >= widget.routeSectionCursor && + i < widget.routeSectionCursor + maxSections) { section.lineColor = Color.fromARGB( - (255 - ((255 / (maxSections + 1)) * (i - routeSectionCursor))) + (255 - + ((255 / (maxSections + 1)) * + (i - widget.routeSectionCursor))) .toInt(), 0, 144, @@ -313,7 +322,8 @@ class _HERENavigationState extends BaseNavigationState { section.lineColor = Color.fromARGB(0, 255, 255, 255); } - if (i >= routeSectionCursor && i < routeSectionCursor + maxWalkPaths) { + if (i >= widget.routeSectionCursor && + i < widget.routeSectionCursor + maxWalkPaths) { path.lineColor = Color.fromARGB(160, 255, 0, 0); } else { path.lineColor = Color.fromARGB(0, 255, 255, 255); diff --git a/lib/navigation/baseNavigation.dart b/lib/navigation/baseNavigation.dart index 78e5f1c..1aed658 100644 --- a/lib/navigation/baseNavigation.dart +++ b/lib/navigation/baseNavigation.dart @@ -65,6 +65,7 @@ abstract class BaseNavigation extends StatefulWidget { bool isLookingAround = false; double currentZoom = 20; DHLCoordinates lastPosition = DHLCoordinates(0, 0); + int routeSectionCursor = 0; StreamSubscription? stopCompletedEvent; StreamSubscription? stopIncompletedEvent; @@ -79,8 +80,6 @@ abstract class BaseNavigation extends StatefulWidget { } abstract class BaseNavigationState extends State<BaseNavigation> { - int routeSectionCursor = 0; - StreamSubscription? changeZoomEvent; StreamSubscription? flyToEvent; @@ -166,7 +165,9 @@ abstract class BaseNavigationState extends State<BaseNavigation> { // if address is double planned and there is a stop before this one. bool shouldDoublePlannedAddressBeVisible(DestinationPin taskToCheck) { if (!taskToCheck.isDoublePlannedAddress) return true; - for (int i = routeSectionCursor; i < widget.parcelNumberPins.length; i++) { + for (int i = widget.routeSectionCursor; + i < widget.parcelNumberPins.length; + i++) { var item = widget.parcelNumberPins[i]; if (item == taskToCheck) { diff --git a/lib/navigation/openstreetmapNavigation.dart b/lib/navigation/openstreetmapNavigation.dart new file mode 100644 index 0000000..f8f37df --- /dev/null +++ b/lib/navigation/openstreetmapNavigation.dart @@ -0,0 +1,274 @@ +import 'dart:async'; +import 'package:flutter_osm_plugin/flutter_osm_plugin.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:training_planner/events/MapPanningEvent.dart'; +import 'package:training_planner/events/NextStopLoadedEvent.dart'; +import 'package:training_planner/events/RouteLoadedEvent.dart'; +import 'package:training_planner/events/StopCompletedEvent.dart'; +import 'package:training_planner/main.dart'; +import 'package:training_planner/navigation/baseNavigation.dart'; +import 'package:training_planner/pages/navigation_page.dart'; +import 'package:training_planner/route.dart'; +import '../route.dart' as DHLRoute; + +class OpenstreetmapNavigation extends BaseNavigation { + OpenstreetmapNavigation({Key? key, required route}) + : super(key: key, route: route); + + @override + _OpenstreetNavigationState createState() => _OpenstreetNavigationState(); +} + +class _OpenstreetNavigationState extends BaseNavigationState + with OSMMixinObserver { + late List<RoadInfo> roads; + late MapController controller; + + @override + void initState() { + widget.routeSectionCursor = 0; + widget.currentZoom = 10; + controller = MapController( + initMapWithUserPosition: true, + areaLimit: BoundingBox( + east: 7.601818, + north: 53.703101, + south: 50.679237, + west: 2.894101, + )); + + widget.isLookingAround = true; + eventBus.fire(MapPanningEvent(true)); + + widget.stopCompletedEvent = eventBus.on<StopCompletedEvent>().listen((e) { + widget.routeSectionCursor += 1; + if (widget.routeSectionCursor >= widget.allTasks.length) { + widget.routeSectionCursor = widget.allTasks.length - 1; + } + updateHighlightedRouteSections(); + eventBus.fire( + NextStopLoadedEvent(widget.allTasks[widget.routeSectionCursor])); + }); + + widget.stopIncompletedEvent = + eventBus.on<StopIncompletedEvent>().listen((e) { + widget.routeSectionCursor -= 1; + if (widget.routeSectionCursor < 0) widget.routeSectionCursor = 0; + updateHighlightedRouteSections(force: true); + eventBus.fire( + NextStopLoadedEvent(widget.allTasks[widget.routeSectionCursor])); + }); + + blacklistProvider + .getBlacklist() + .then((value) => {widget.blacklist = value}); + + super.initState(); + controller.addObserver(this); + + addRoute(widget.route); + } + + @override + Future<void> mapIsReady(bool isReady) async { + addRoute(widget.route); + } + + @override + Future<void> addRoute(DHLRoute.Route route) async { + print( + "ASGOPDJS_GH DS*()FHY DS()UFHY) DSU(FHY)DSU( FH)DSUHF)UDS HF)UDSUHF "); + if (route.tasks == null) return; + + print("234"); + + GeoPoint routeStartCoords = await controller.myLocation(); + + List<GeoPoint> waypoints = [routeStartCoords]; + //List<MultiRoadConfiguration> configs = []; + + groupTasksIntoGroups(route); + /* + GeoPoint prevCoord = routeStartCoords; + for (var item in widget.parcelNumberPins) { + GeoPoint point = GeoPoint( + latitude: item.coords.lattitude, longitude: item.coords.longitude); + + waypoints.add(point); + + //configs.add(MultiRoadConfiguration( + // startPoint: prevCoord, + // destinationPoint: point, + //)); + + prevCoord = point; + } + + for (var item in widget.parcelNumberPins) { + item.isDoublePlannedAddress = isAddressDoublePlanned(item); + } +*/ + /* + roads = await controller.drawMultipleRoad( + configs, + commonRoadOption: MultiRoadOption( + roadWidth: 10, + roadColor: Colors.blue, + ), + ); + */ + + eventBus.fire(NextStopLoadedEvent(widget.allTasks[0])); + + updateHighlightedRouteSections(); + } + + @override + void dispose() { + controller.dispose(); + super.dispose(); + } + + var mapPointers = 0; + var mapPosition; + + void onMoveStart() { + widget.isLookingAround = true; + eventBus.fire(MapPanningEvent(true)); + } + + void onMoveEnd() {} + + @override + Widget build(BuildContext context) { + return Listener( + onPointerDown: (details) { + if (mapPointers == 0) onMoveStart(); + mapPointers++; + }, + onPointerUp: (details) { + mapPointers--; + if (mapPointers == 0) onMoveEnd(); + }, + behavior: HitTestBehavior.deferToChild, + child: OSMFlutter( + controller: controller, + trackMyPosition: true, + initZoom: widget.currentZoom, + minZoomLevel: 2, + maxZoomLevel: 18, + stepZoom: 1.0, + userLocationMarker: UserLocationMaker( + personMarker: MarkerIcon( + assetMarker: AssetMarker( + image: AssetImage('assets/package.png'), + scaleAssetImage: 1.0), + ), + directionArrowMarker: MarkerIcon( + assetMarker: AssetMarker( + image: AssetImage('assets/package.png'), + scaleAssetImage: 1.0), + ), + ), + roadConfiguration: RoadOption( + roadColor: Colors.yellowAccent, + ), + markerOption: MarkerOption( + defaultMarker: MarkerIcon( + icon: Icon( + Icons.person_pin_circle, + color: Colors.blue, + size: 56, + ), + ), + ), + )); + } + + @override + void changeZoom(double newVal) async { + if (newVal > 18) newVal = 18; + if (newVal < 10) newVal = 10; + widget.currentZoom = newVal; + await controller.setZoom(zoomLevel: newVal); + } + + @override + createPinWidget( + DestinationPin pin, Color color, DHLCoordinates coords) async { + await controller.addMarker( + GeoPoint( + latitude: pin.coords.lattitude, longitude: pin.coords.longitude), + markerIcon: MarkerIcon( + iconWidget: Container( + height: 65, + width: 150, + child: createPin(pin, color, + isDoublePlannedAddress: pin.isDoublePlannedAddress), + ), + ), + angle: 0); + } + + @override + void flyTo(DHLCoordinates coords) async { + await controller.enableTracking( + enableStopFollow: false, + ); + } + + @override + void updateHighlightedRouteSections({bool force = false}) { + int maxPins = 300; + + for (int i = widget.parcelNumberPins.length - 1; i >= 0; i--) { + DestinationPin pin = widget.parcelNumberPins.elementAt(i); + + Color color = Color.fromARGB(200, 0, 144, 138); + if (i == widget.routeSectionCursor) + color = Color.fromARGB(199, 143, 8, 31); + if (i == widget.routeSectionCursor + 1) + color = Color.fromARGB(197, 13, 36, 241); + if (destinationPinIsInBlacklist(widget.parcelNumberPins[i])) { + color = Color.fromRGBO(143, 8, 31, 0.78); + } + + bool forceUpdateThisPin = force && + (i > widget.routeSectionCursor - 3 && + i < widget.routeSectionCursor + 3); + + /* + if (!shouldDoublePlannedAddressBeVisible(pin)) { + pin.pin?.unpin(); + pin.pin = null; + continue; + } + + + if (i > routeSectionCursor + 1 && i < routeSectionCursor + maxPins) { + if (forceUpdateThisPin) { + pin.pin?.unpin(); + pin.pin = null; + } else if (pin.pin != null) { + continue; + } + var widgetPin = + createPinWidget(pin, color, widget.destinationCoords[i]); + pin.pin = widgetPin; + } else { + pin.pin?.unpin(); + pin.pin = null; + }*/ + + if (i == widget.routeSectionCursor || + i == widget.routeSectionCursor + 1) { + var widgetPin = + createPinWidget(pin, color, widget.destinationCoords[i]); + pin.pin = widgetPin; + } + } + } +} diff --git a/lib/pages/navigation_page.dart b/lib/pages/navigation_page.dart index 178c9f3..9cf7277 100644 --- a/lib/pages/navigation_page.dart +++ b/lib/pages/navigation_page.dart @@ -3,6 +3,7 @@ import 'package:auto_orientation/auto_orientation.dart'; import 'package:flutter/services.dart'; import 'package:training_planner/navigation/HERENavigation.dart'; import 'package:training_planner/navigation/baseNavigation.dart'; +import 'package:training_planner/navigation/openstreetmapNavigation.dart'; import 'package:training_planner/route.dart' as DHLRoute; import 'package:carousel_slider/carousel_slider.dart'; import 'package:flutter/material.dart'; diff --git a/lib/services/mock_route_provider_service.dart b/lib/services/mock_route_provider_service.dart index 975dcf4..66eb07a 100644 --- a/lib/services/mock_route_provider_service.dart +++ b/lib/services/mock_route_provider_service.dart @@ -7,9402 +7,7044 @@ class MockRouteProviderService extends IRouteProviderService { Route _getRoute1() { return RouteInfo.fromJson(jsonDecode(''' { - "route":{ - "timeframe_key":"23573", - "trip_key":"19023573", - "trip_number":"8", - "trip_pda_status":"5", - "trip_pda_status_description":"Rit overgedragen", - "trip_sequence_number":"1", - "number_in_trip":"161", - "plate":"VND-34-B", - "damage_registration":true, - "eva":"11:03", - "trip_date":"8/11/2022", - "first_address_lat":"50.8856454330772", - "first_address_lng":"5.74016774334839", - "tasks":[ - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084788754", - "pid":"JJD000090254000019435901", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"AMAZON", - "product_type_description":null, - "delivery_sequence_number":"1", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"23", - "group_size":"26", - "parcel_id":"JJD000090254000019435901", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084216240", - "pid":"JVGL06097034001146331431", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Verstappen.com - ", - "product_type_description":null, - "delivery_sequence_number":"2", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"3", - "group_size":"26", - "parcel_id":"JVGL06097034001146331431", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083682745", - "pid":"JVGL06240303000216862673", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Lydia Soltani ", - "product_type_description":null, - "delivery_sequence_number":"3", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"6", - "group_size":"26", - "parcel_id":"JVGL06240303000216862673", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084422142", - "pid":"3SQLW854899385", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Safrant1XL", - "product_type_description":null, - "delivery_sequence_number":"4", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"24", - "group_size":"26", - "parcel_id":"3SQLW854899385", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085196486", - "pid":"JVGL06197966000212321506", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Scents and Home - afd e commerce", - "product_type_description":null, - "delivery_sequence_number":"5", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"true", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"0", - "group_size":"26", - "parcel_id":"JVGL06197966000212321506", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084976957", - "pid":"JUN408717234120000058180", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"6", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"21", - "group_size":"26", - "parcel_id":"JUN408717234120000058180", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1081975289", - "pid":"JVGL06240303000291976061", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Maxime van Poele ", - "product_type_description":"VP", - "delivery_sequence_number":"7", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"10", - "group_size":"26", - "parcel_id":"JVGL06240303000291976061", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085074363", - "pid":"3SNCS005029454", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Nelson Schoenen", - "product_type_description":null, - "delivery_sequence_number":"8", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"18", - "group_size":"26", - "parcel_id":"3SNCS005029454", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085000253", - "pid":"3SBDG9966901980", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Voetbalshop.nl", - "product_type_description":null, - "delivery_sequence_number":"9", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"12", - "group_size":"26", - "parcel_id":"3SBDG9966901980", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085648205", - "pid":"JUN491599949120181110776", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"10", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"17", - "group_size":"26", - "parcel_id":"JUN491599949120181110776", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1082427835", - "pid":"JVGL06240303002089496790", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Kelly Caggiari ", - "product_type_description":null, - "delivery_sequence_number":"11", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"9", - "group_size":"26", - "parcel_id":"JVGL06240303002089496790", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084600629", - "pid":"3SQLW855673782", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Partywinkel", - "product_type_description":null, - "delivery_sequence_number":"12", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"25", - "group_size":"26", - "parcel_id":"3SQLW855673782", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084255286", - "pid":"JVGL06240303000858547736", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - PPA Sikteoeboen ", - "product_type_description":null, - "delivery_sequence_number":"14", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"4", - "group_size":"26", - "parcel_id":"JVGL06240303000858547736", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084494778", - "pid":"3SNRA0000115259", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"NORAH B.V.", - "product_type_description":null, - "delivery_sequence_number":"15", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"19", - "group_size":"26", - "parcel_id":"3SNRA0000115259", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084191483", - "pid":"JVGL06240303001865981561", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Julie Van Oosterhout ", - "product_type_description":"VP", - "delivery_sequence_number":"16", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"5", - "group_size":"26", - "parcel_id":"JVGL06240303001865981561", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085559983", - "pid":"3SKAB015643801", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"KABEL", - "product_type_description":null, - "delivery_sequence_number":"17", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"22", - "group_size":"26", - "parcel_id":"3SKAB015643801", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085050947", - "pid":"JVGL06212971001471148646", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"SlipOnline - ", - "product_type_description":null, - "delivery_sequence_number":"18", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"1", - "group_size":"26", - "parcel_id":"JVGL06212971001471148646", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084908371", - "pid":"JJD0000900623546980615315", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"Parfum voor in Huis", - "product_type_description":null, - "delivery_sequence_number":"19", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"2", - "group_size":"26", - "parcel_id":"JJD0000900623546980615315", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083477508", - "pid":"JVGL06240303000486443412", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Kelsey Manes ", - "product_type_description":null, - "delivery_sequence_number":"20", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"7", - "group_size":"26", - "parcel_id":"JVGL06240303000486443412", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085664715", - "pid":"JUN491599949120181115423", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"21", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"13", - "group_size":"26", - "parcel_id":"JUN491599949120181115423", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085639593", - "pid":"JUN491599949120181106251", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"22", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"14", - "group_size":"26", - "parcel_id":"JUN491599949120181106251", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085645182", - "pid":"JUN491599949120181110838", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"23", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"15", - "group_size":"26", - "parcel_id":"JUN491599949120181110838", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083887445", - "pid":"JJD000030145232000015340828", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"4PX EXPRESS GMBH", - "product_type_description":null, - "delivery_sequence_number":"24", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"11", - "group_size":"26", - "parcel_id":"JJD000030145232000015340828", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1079081462", - "pid":"JVGL06240303000417772490", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"VSPV - Annelou Hendriks ", - "product_type_description":"VP", - "delivery_sequence_number":"25", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"8", - "group_size":"26", - "parcel_id":"JVGL06240303000417772490", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085438747", - "pid":"JUN491599949120181069733", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"26", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"16", - "group_size":"26", - "parcel_id":"JUN491599949120181069733", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083884939", - "pid":"3SHM00003084606", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"H&M", - "product_type_description":null, - "delivery_sequence_number":"27", - "delivery_moment":"2022-11-08T11:03:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "group_sender_names":"SP・Scents and Home - afd e commerce, SP・SlipOnline - , SP・Parfum voor in Huis, SP・Verstappen.com - , SP・VSPV - PPA Sikteoeboen , SP・VSPV - Julie Van Oosterhout , SP・VSPV - Lydia Soltani , SP・VSPV - Kelsey Manes , SP・VSPV - Annelou Hendriks , SP・VSPV - Kelly Caggiari , SP・VSPV - Maxime van Poele , SP・4PX EXPRESS GMBH, SP・Voetbalshop.nl, SP・WEHKAMP, SP・Nelson Schoenen, SP・NORAH B.V., SP・H&M, SP・KABEL, SP・AMAZON, SP・Safrant1XL, SP・Partywinkel", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "active_group_size":"26", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1085196486", - "1085050947", - "1084908371", - "1084216240", - "1084255286", - "1084191483", - "1083682745", - "1083477508", - "1079081462", - "1082427835", - "1081975289", - "1083887445", - "1085000253", - "1085664715", - "1085639593", - "1085645182", - "1085438747", - "1085648205", - "1085074363", - "1084494778", - "1083884939", - "1084976957", - "1085559983", - "1084788754", - "1084422142", - "1084600629" - ], - "group_id":"08:00_12:00_6231BK12SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL06197966000212321506", - "JVGL06212971001471148646", - "JJD0000900623546980615315", - "JVGL06097034001146331431", - "JVGL06240303000858547736", - "JVGL06240303001865981561", - "JVGL06240303000216862673", - "JVGL06240303000486443412", - "JVGL06240303000417772490", - "JVGL06240303002089496790", - "JVGL06240303000291976061", - "JJD000030145232000015340828", - "3SBDG9966901980", - "JUN491599949120181115423", - "JUN491599949120181106251", - "JUN491599949120181110838", - "JUN491599949120181069733", - "JUN491599949120181110776", - "3SNCS005029454", - "3SNRA0000115259", - "3SHM00003084606", - "JUN408717234120000058180", - "3SKAB015643801", - "JJD000090254000019435901", - "3SQLW854899385", - "3SQLW855673782" - ], - "group_task_index":"20", - "group_size":"26", - "parcel_id":"3SHM00003084606", - "eta":"11:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084634265", - "pid":"3SPB0001151010", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"PULL&BEAR", - "product_type_description":null, - "delivery_sequence_number":"28", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"NBB ", - "indication_not_at_neighbours":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"2", - "group_size":"7", - "parcel_id":"3SPB0001151010", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084647301", - "pid":"3SBHP007332151", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"Bax Music", - "product_type_description":null, - "delivery_sequence_number":"29", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"5", - "group_size":"7", - "parcel_id":"3SBHP007332151", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084521455", - "pid":"3SQLW855420926", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"Partywinkel", - "product_type_description":null, - "delivery_sequence_number":"30", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"6", - "group_size":"7", - "parcel_id":"3SQLW855420926", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084407495", - "pid":"3SDFC0719808870", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"Heideweg", - "house_number":"6", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"Frank van Veen", - "product_type_description":null, - "delivery_sequence_number":"31", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"4", - "group_size":"7", - "parcel_id":"3SDFC0719808870", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084375961", - "pid":"3SHM00003109438", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"H&M", - "product_type_description":null, - "delivery_sequence_number":"32", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"3", - "group_size":"7", - "parcel_id":"3SHM00003109438", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084519176", - "pid":"3SBDG9661034067", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"Voetbalshop.nl", - "product_type_description":null, - "delivery_sequence_number":"33", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"true", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"0", - "group_size":"7", - "parcel_id":"3SBDG9661034067", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084463969", - "pid":"JUN491599949120180940277", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"WEHKAMP", - "product_type_description":"PA", - "delivery_sequence_number":"35", - "delivery_moment":"2022-11-08T11:12:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T08:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T12:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"08:00-12:00", - "next_timeframe_descr_full":"OCHTENDSP", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "group_sender_names":"SP・Voetbalshop.nl, SP・WEHKAMP, SP・PULL&BEAR, SP・H&M, SP・Frank van Veen, SP・Bax Music, SP・Partywinkel", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "active_group_size":"7", - "timeframe":"08:00-12:00", - "group_parcel_keys":[ - "1084519176", - "1084463969", - "1084634265", - "1084375961", - "1084407495", - "1084647301", - "1084521455" - ], - "group_id":"08:00_12:00_6231AJ6SP", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "3SBDG9661034067", - "JUN491599949120180940277", - "3SPB0001151010", - "3SHM00003109438", - "3SDFC0719808870", - "3SBHP007332151", - "3SQLW855420926" - ], - "group_task_index":"1", - "group_size":"7", - "parcel_id":"JUN491599949120180940277", - "eta":"11:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085165436", - "pid":"3SMPK11662890", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"28", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8772516294853", - "address_longitude":"5.74342604444883", - "customer_short_name":"Stoov BV", - "product_type_description":null, - "delivery_sequence_number":"36", - "delivery_moment":"2022-11-08T11:15:22+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"10", - "scanned_in_trip":"true", - "parcel_id":"3SMPK11662890", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AJ28", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8772516294853", - "lng":"5.74342604444883", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 28, MEERSSEN", - "eta":"11:15" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083737340", - "pid":"3SDFC1796398076", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"HEIDEWG", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.877480071736", - "address_longitude":"5.74280124234404", - "customer_short_name":"Vin d'Oc Puur Natuur", - "product_type_description":"BP", - "delivery_sequence_number":"37", - "delivery_moment":"2022-11-08T11:16:56+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SDFC1796398076", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AJ12", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.877480071736", - "lng":"5.74280124234404", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 12, MEERSSEN", - "eta":"11:16" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085405115", - "pid":"3SJBS000450536", - "postal_code_numeric":"6231", - "postal_code_alpha":"AH", - "street":"HEIDEWG", - "house_number":"15", - "house_number_addition":"a", - "city":"MEERSSEN", - "address_latitude":"50.8777683645149", - "address_longitude":"5.74288231068298", - "customer_short_name":"Justbrands", - "product_type_description":null, - "delivery_sequence_number":"38", - "delivery_moment":"2022-11-08T11:18:22+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SJBS000450536", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AH15A", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8777683645149", - "lng":"5.74288231068298", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 15, MEERSSEN", - "eta":"11:18" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085408728", - "pid":"3SMDA105031062", - "postal_code_numeric":"6231", - "postal_code_alpha":"AS", - "street":"EBURONENSTR", - "house_number":"80", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8771621006828", - "address_longitude":"5.74008414959027", - "customer_short_name":"OMODA", - "product_type_description":null, - "delivery_sequence_number":"39", - "delivery_moment":"2022-11-08T11:20:34+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SMDA105031062", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AS80", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8771621006828", - "lng":"5.74008414959027", - "delivery_code":"", - "full_address_for_navigation":"EBURONENSTRAAT 80, MEERSSEN", - "eta":"11:20" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084179161", - "pid":"JJD149090000007358764", - "postal_code_numeric":"6231", - "postal_code_alpha":"AP", - "street":"EBURONENSTR", - "house_number":"79", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8774067830559", - "address_longitude":"5.73955166382894", - "customer_short_name":"Hobbii", - "product_type_description":null, - "delivery_sequence_number":"40", - "delivery_moment":"2022-11-08T11:22:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD149090000007358764", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AP79", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8774067830559", - "lng":"5.73955166382894", - "delivery_code":"", - "full_address_for_navigation":"EBURONENSTRAAT 79, MEERSSEN", - "eta":"11:22" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085236591", - "pid":"3SPET9064267274", - "postal_code_numeric":"6231", - "postal_code_alpha":"AP", - "street":"EBURONENSTR", - "house_number":"69", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.877144675512", - "address_longitude":"5.73907698116711", - "customer_short_name":"Medpets.nl", - "product_type_description":null, - "delivery_sequence_number":"41", - "delivery_moment":"2022-11-08T11:23:46+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SPET9064267274", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AP69", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.877144675512", - "lng":"5.73907698116711", - "delivery_code":"", - "full_address_for_navigation":"EBURONENSTRAAT 69, MEERSSEN", - "eta":"11:23" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084623227", - "pid":"3SDFC0345906367", - "postal_code_numeric":"6231", - "postal_code_alpha":"AX", - "street":"DEN OLIEBERG", - "house_number":"48", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8763663866654", - "address_longitude":"5.74208814221039", - "customer_short_name":"De Huismus", - "product_type_description":"PA", - "delivery_sequence_number":"43", - "delivery_moment":"2022-11-08T11:26:19+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "lng":"5.74208814221039", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231AX48", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "intervention_data":{ - "deliveryAddressChange":{ - "street":"Den Olieberg", - "city":"Meerssen", - "postalCode":"6231AX", - "houseNumber":{ - "number":"46" - } - }, - "timestamp":"2022-11-08T09:00:20.000+01:00", - "status":"SUCCEEDED", - "parcelId":"3SDFC0345906367", - "interventionId":"43764703", - "type":"address_change", - "parcelKey":"1084623227" + "route": { + "timeframe_key": "15994", + "trip_key": "20315994", + "trip_number": "10", + "trip_pda_status": "5", + "trip_pda_status_description": "Rit overgedragen", + "trip_sequence_number": "1", + "number_in_trip": "135", + "plate": "VTG-69-R", + "damage_registration": true, + "eva": "10:43", + "trip_date": "19/4/2023", + "first_address_lat": "50.8919767278786", + "first_address_lng": "5.74122752631296", + "tasks": [ + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196753602", + "pid": "JVGL04888269001610548053", + "postal_code_numeric": "6241", + "postal_code_alpha": "GP", + "street": "Hoolhuis", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8919767278786", + "address_longitude": "5.74122752631296", + "customer_short_name": "Wibra webshop NL - 0578-676333", + "product_type_description": null, + "delivery_sequence_number": "1", + "delivery_moment": "2023-04-19T10:43:04+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL04888269001610548053", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GP1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8919767278786", + "lng": "5.74122752631296", + "delivery_code": "", + "full_address_for_navigation": "HOOLHUIS 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894228", + "finished_at": "2023-04-19 10:50:28 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:43" }, - "grouped":"false", - "full_address_for_navigation":"DEN OLIEBERG 48, MEERSSEN", - "scanned_in_trip":"true", - "group_pids":[ - - ], - "intervention_message_confirmed":"true", - "group_task_index":"0", - "group_size":"1", - "parcel_id":"3SDFC0345906367", - "is_intervention":"true", - "lat":"50.8763663866654", - "eta":"11:26" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085569207", - "pid":"3SMML0001569683", - "postal_code_numeric":"6231", - "postal_code_alpha":"AX", - "street":"Den Olieberg", - "house_number":"16", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8766904534171", - "address_longitude":"5.74184767920389", - "customer_short_name":"MAMALOES", - "product_type_description":null, - "delivery_sequence_number":"44", - "delivery_moment":"2022-11-08T11:28:05+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SMML0001569683", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AX16", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8766904534171", - "lng":"5.74184767920389", - "delivery_code":"", - "full_address_for_navigation":"DEN OLIEBERG 16, MEERSSEN", - "eta":"11:28" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084151410", - "pid":"JVGL06097034000015783012", - "postal_code_numeric":"6231", - "postal_code_alpha":"AC", - "street":"HOLSTR", - "house_number":"57", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8765095452251", - "address_longitude":"5.74066125223476", - "customer_short_name":"Verstappen.com - ", - "product_type_description":null, - "delivery_sequence_number":"45", - "delivery_moment":"2022-11-08T11:29:53+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06097034000015783012", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AC57", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8765095452251", - "lng":"5.74066125223476", - "delivery_code":"", - "full_address_for_navigation":"HOLSTRAAT 57, MEERSSEN", - "eta":"11:29" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083858829", - "pid":"JVGL06176028000707860222", - "postal_code_numeric":"6231", - "postal_code_alpha":"AC", - "street":"HOLSTR", - "house_number":"63", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8762398889662", - "address_longitude":"5.74045233415135", - "customer_short_name":"Centraal Magazijn Tilburg - ", - "product_type_description":null, - "delivery_sequence_number":"46", - "delivery_moment":"2022-11-08T11:31:23+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06176028000707860222", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AC63NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8762398889662", - "lng":"5.74045233415135", - "delivery_code":"", - "full_address_for_navigation":"HOLSTRAAT 63, MEERSSEN", - "eta":"11:31" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085076140", - "pid":"JVGL04085221001423887712", - "postal_code_numeric":"6231", - "postal_code_alpha":"AC", - "street":"HOLSTR", - "house_number":"97", - "house_number_addition":"B", - "city":"MEERSSEN", - "address_latitude":"50.8751192271328", - "address_longitude":"5.73962591324151", - "customer_short_name":"Vogels Autogassystemen - ", - "product_type_description":null, - "delivery_sequence_number":"47", - "delivery_moment":"2022-11-08T11:33:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL04085221001423887712", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AC97BNBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8751192271328", - "lng":"5.73962591324151", - "delivery_code":"", - "full_address_for_navigation":"HOLSTRAAT 97, MEERSSEN", - "eta":"11:33" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085633327", - "pid":"3SNC208782334", - "postal_code_numeric":"6231", - "postal_code_alpha":"AK", - "street":"FRANKENSTR", - "house_number":"11", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8756930225246", - "address_longitude":"5.73882541781382", - "customer_short_name":"Nespresso", - "product_type_description":null, - "delivery_sequence_number":"48", - "delivery_moment":"2022-11-08T11:34:49+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SNC208782334", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AK11", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8756930225246", - "lng":"5.73882541781382", - "delivery_code":"", - "full_address_for_navigation":"FRANKENSTRAAT 11, MEERSSEN", - "eta":"11:34" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084908240", - "pid":"JVGL06003800000153912150", - "postal_code_numeric":"6231", - "postal_code_alpha":"AN", - "street":"EBURONENSTR", - "house_number":"39", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8767883037908", - "address_longitude":"5.73802973624241", - "customer_short_name":"Panacea DM B.V. - ", - "product_type_description":null, - "delivery_sequence_number":"49", - "delivery_moment":"2022-11-08T11:36:52+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06003800000153912150", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AN39", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8767883037908", - "lng":"5.73802973624241", - "delivery_code":"", - "full_address_for_navigation":"EBURONENSTRAAT 39, MEERSSEN", - "eta":"11:36" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084770644", - "pid":"JVGL06213730001855912939", - "postal_code_numeric":"6231", - "postal_code_alpha":"AK", - "street":"FRANKENSTR", - "house_number":"33", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.876194740365", - "address_longitude":"5.73795064868898", - "customer_short_name":"PAY & GO", - "product_type_description":null, - "delivery_sequence_number":"50", - "delivery_moment":"2022-11-08T11:38:51+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06213730001855912939", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231AK33", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06213730001855912939", - "3SWLT0026997836" - ], - "group_parcel_keys":[ - "1084770644", - "1076585678" - ], - "group_sender_names":"PAY & GO, YUNEXPRESS NETHERLANDS B.V.", - "lat":"50.876194740365", - "lng":"5.73795064868898", - "delivery_code":"", - "full_address_for_navigation":"FRANKENSTRAAT 33, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667905758", - "finished_at":"2022-11-08 12:09:18 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:38" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1076585678", - "pid":"3SWLT0026997836", - "postal_code_numeric":"6231", - "postal_code_alpha":"AK", - "street":"FRANKENSTR", - "house_number":"33", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.876194740365", - "address_longitude":"5.73795064868898", - "customer_short_name":"YUNEXPRESS NETHERLANDS B.V.", - "product_type_description":null, - "delivery_sequence_number":"51", - "delivery_moment":"2022-11-08T11:38:51+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SWLT0026997836", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231AK33", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06213730001855912939", - "3SWLT0026997836" - ], - "group_parcel_keys":[ - "1084770644", - "1076585678" - ], - "group_sender_names":"PAY & GO, YUNEXPRESS NETHERLANDS B.V.", - "lat":"50.876194740365", - "lng":"5.73795064868898", - "delivery_code":"", - "full_address_for_navigation":"FRANKENSTRAAT 33, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667905758", - "finished_at":"2022-11-08 12:09:18 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:38" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1081417771", - "pid":"3SWLT0027165088", - "postal_code_numeric":"6231", - "postal_code_alpha":"BZ", - "street":"ROMEINENSTR", - "house_number":"12", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8747296338078", - "address_longitude":"5.73617292206397", - "customer_short_name":"YUNEXPRESS NETHERLANDS B.V.", - "product_type_description":null, - "delivery_sequence_number":"52", - "delivery_moment":"2022-11-08T11:41:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SWLT0027165088", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BZ12", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8747296338078", - "lng":"5.73617292206397", - "delivery_code":"", - "full_address_for_navigation":"ROMEINENSTRAAT 12, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667905944", - "finished_at":"2022-11-08 12:12:24 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:41" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085139206", - "pid":"JVGL06213730000952390944", - "postal_code_numeric":"6231", - "postal_code_alpha":"AT", - "street":"KUILENSTR", - "house_number":"15", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8761759386749", - "address_longitude":"5.7363220639215", - "customer_short_name":"Q-time Nederland", - "product_type_description":null, - "delivery_sequence_number":"54", - "delivery_moment":"2022-11-08T11:44:35+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06213730000952390944", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231AT15", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8761759386749", - "lng":"5.7363220639215", - "delivery_code":"", - "full_address_for_navigation":"KUILENSTRAAT 15, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667906072", - "finished_at":"2022-11-08 12:14:32 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:44" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085210296", - "pid":"JVGL06187561000965206821", - "postal_code_numeric":"6231", - "postal_code_alpha":"BH", - "street":"AMBYERWG", - "house_number":"21", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8753234675945", - "address_longitude":"5.7354771337404", - "customer_short_name":"verzendbazen - ", - "product_type_description":null, - "delivery_sequence_number":"55", - "delivery_moment":"2022-11-08T11:46:41+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"21", - "scanned_in_trip":"true", - "parcel_id":"JVGL06187561000965206821", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BH21", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8753234675945", - "lng":"5.7354771337404", - "delivery_code":"", - "full_address_for_navigation":"AMBYERWEG 21, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667906302", - "finished_at":"2022-11-08 12:18:22 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:46" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084744420", - "pid":"3SZR0004912512", - "postal_code_numeric":"6231", - "postal_code_alpha":"BJ", - "street":"Ambyerweg", - "house_number":"28", - "house_number_addition":null, - "city":"rothem", - "address_latitude":"50.8750630545323", - "address_longitude":"5.73509101777235", - "customer_short_name":"ZARA", - "product_type_description":null, - "delivery_sequence_number":"56", - "delivery_moment":"2022-11-08T11:48:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB ", - "indication_not_at_neighbours":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SZR0004912512", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BJ28NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8750630545323", - "lng":"5.73509101777235", - "delivery_code":"", - "full_address_for_navigation":"AMBYERWEG 28, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667906171", - "finished_at":"2022-11-08 12:16:11 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:48" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085088952", - "pid":"LA230389182NL", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"MAASTRICHTERWG", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8832846269907", - "address_longitude":"5.73761746173743", - "customer_short_name":"DEUTSCHE", - "product_type_description":null, - "delivery_sequence_number":"57", - "delivery_moment":"2022-11-08T11:51:43+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"LA230389182NL", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BK6", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8832846269907", - "lng":"5.73761746173743", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 6, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667906522", - "finished_at":"2022-11-08 12:22:02 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:51" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085320624", - "pid":"JVGL06176028001832236653", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"Weerterveld 71C", - "house_number":"0", - "house_number_addition":null, - "city":"MEERSSEN", - "customer_short_name":"Centraal Magazijn Tilburg - ", - "product_type_description":null, - "delivery_sequence_number":"58", - "delivery_moment":"2022-11-08T11:59:32+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06176028001832236653", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231NC0NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"", - "lng":"", - "delivery_code":"", - "full_address_for_navigation":"", - "finished":"true", - "finished_at_timestamp":"1667906905", - "finished_at":"2022-11-08 12:28:25 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"11:59" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085214718", - "pid":"JVGL05702949000503232633", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"66", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8937544181534", - "address_longitude":"5.74529743873835", - "customer_short_name":"SAVEURS FOODPRODUCTIE B.V. - EIN ", - "product_type_description":"VP", - "delivery_sequence_number":"59", - "delivery_moment":"2022-11-08T12:07:24+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・SAVEURS FOODPRODUCTIE B.V. - EIN ", - "lat":"50.8937544181534", - "lng":"5.74529743873835", - "active_group_size":"3", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085214718", - "1085214719", - "1085214720" - ], - "group_id":"10:00_15:00_6231RK66NBB", - "group_first":"true", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 66, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL05702949000503232633", - "JVGL05702949000122984484", - "JVGL05702949000136874942" - ], - "group_task_index":"0", - "group_size":"3", - "parcel_id":"JVGL05702949000503232633", - "eta":"12:07" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085214719", - "pid":"JVGL05702949000122984484", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"66", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8937544181534", - "address_longitude":"5.74529743873835", - "customer_short_name":"SAVEURS FOODPRODUCTIE B.V. - EIN ", - "product_type_description":"VP", - "delivery_sequence_number":"60", - "delivery_moment":"2022-11-08T12:07:24+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・SAVEURS FOODPRODUCTIE B.V. - EIN ", - "lat":"50.8937544181534", - "lng":"5.74529743873835", - "active_group_size":"3", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085214718", - "1085214719", - "1085214720" - ], - "group_id":"10:00_15:00_6231RK66NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 66, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL05702949000503232633", - "JVGL05702949000122984484", - "JVGL05702949000136874942" - ], - "group_task_index":"1", - "group_size":"3", - "parcel_id":"JVGL05702949000122984484", - "eta":"12:07" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085214720", - "pid":"JVGL05702949000136874942", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"66", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8937544181534", - "address_longitude":"5.74529743873835", - "customer_short_name":"SAVEURS FOODPRODUCTIE B.V. - EIN ", - "product_type_description":"VP", - "delivery_sequence_number":"61", - "delivery_moment":"2022-11-08T12:07:24+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・SAVEURS FOODPRODUCTIE B.V. - EIN ", - "lat":"50.8937544181534", - "lng":"5.74529743873835", - "active_group_size":"3", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085214718", - "1085214719", - "1085214720" - ], - "group_id":"10:00_15:00_6231RK66NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 66, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL05702949000503232633", - "JVGL05702949000122984484", - "JVGL05702949000136874942" - ], - "group_task_index":"2", - "group_size":"3", - "parcel_id":"JVGL05702949000136874942", - "eta":"12:07" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717010", - "pid":"JVGL04848701863758", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"64", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8934431551543", - "address_longitude":"5.74502925340617", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"62", - "delivery_moment":"2022-11-08T12:09:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8934431551543", - "lng":"5.74502925340617", - "active_group_size":"5", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085717262", - "1085717008", - "1085717009", - "1085717010", - "1085717011" - ], - "group_id":"10:00_15:00_6231RK64NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 64, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL40043514001342577388", - "JVGL04848701863689", - "JVGL04848701863712", - "JVGL04848701863758", - "JVGL04848701863761" - ], - "group_task_index":"3", - "group_size":"5", - "parcel_id":"JVGL04848701863758", - "eta":"12:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717262", - "pid":"JVGL40043514001342577388", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"64", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8934431551543", - "address_longitude":"5.74502925340617", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"63", - "delivery_moment":"2022-11-08T12:09:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8934431551543", - "lng":"5.74502925340617", - "active_group_size":"5", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085717262", - "1085717008", - "1085717009", - "1085717010", - "1085717011" - ], - "group_id":"10:00_15:00_6231RK64NBB", - "group_first":"true", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 64, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL40043514001342577388", - "JVGL04848701863689", - "JVGL04848701863712", - "JVGL04848701863758", - "JVGL04848701863761" - ], - "group_task_index":"0", - "group_size":"5", - "parcel_id":"JVGL40043514001342577388", - "eta":"12:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717008", - "pid":"JVGL04848701863689", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"64", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8934431551543", - "address_longitude":"5.74502925340617", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"65", - "delivery_moment":"2022-11-08T12:09:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8934431551543", - "lng":"5.74502925340617", - "active_group_size":"5", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085717262", - "1085717008", - "1085717009", - "1085717010", - "1085717011" - ], - "group_id":"10:00_15:00_6231RK64NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 64, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL40043514001342577388", - "JVGL04848701863689", - "JVGL04848701863712", - "JVGL04848701863758", - "JVGL04848701863761" - ], - "group_task_index":"1", - "group_size":"5", - "parcel_id":"JVGL04848701863689", - "eta":"12:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717011", - "pid":"JVGL04848701863761", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"64", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8934431551543", - "address_longitude":"5.74502925340617", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"66", - "delivery_moment":"2022-11-08T12:09:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8934431551543", - "lng":"5.74502925340617", - "active_group_size":"5", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085717262", - "1085717008", - "1085717009", - "1085717010", - "1085717011" - ], - "group_id":"10:00_15:00_6231RK64NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 64, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL40043514001342577388", - "JVGL04848701863689", - "JVGL04848701863712", - "JVGL04848701863758", - "JVGL04848701863761" - ], - "group_task_index":"4", - "group_size":"5", - "parcel_id":"JVGL04848701863761", - "eta":"12:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717009", - "pid":"JVGL04848701863712", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"64", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8934431551543", - "address_longitude":"5.74502925340617", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"67", - "delivery_moment":"2022-11-08T12:09:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8934431551543", - "lng":"5.74502925340617", - "active_group_size":"5", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - "1085717262", - "1085717008", - "1085717009", - "1085717010", - "1085717011" - ], - "group_id":"10:00_15:00_6231RK64NBB", - "group_first":"false", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 64, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "group_pids":[ - "JVGL40043514001342577388", - "JVGL04848701863689", - "JVGL04848701863712", - "JVGL04848701863758", - "JVGL04848701863761" - ], - "group_task_index":"2", - "group_size":"5", - "parcel_id":"JVGL04848701863712", - "eta":"12:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085174728", - "pid":"JVGL06064760001811976724", - "postal_code_numeric":"6231", - "postal_code_alpha":"RK", - "street":"KRUISBERG", - "house_number":"42", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8916982643027", - "address_longitude":"5.74289375162875", - "customer_short_name":"Canon Business Center Nederland ", - "product_type_description":null, - "delivery_sequence_number":"68", - "delivery_moment":"2022-11-08T12:12:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"31", - "scanned_in_trip":"true", - "parcel_id":"JVGL06064760001811976724", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RK42NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8916982643027", - "lng":"5.74289375162875", - "delivery_code":"", - "full_address_for_navigation":"KRUISBERG 42, MEERSSEN", - "eta":"12:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717263", - "pid":"JVGL0580783929751196", - "postal_code_numeric":"6231", - "postal_code_alpha":"RH", - "street":"WEERTERSTR", - "house_number":"6", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8875255695579", - "address_longitude":"5.72939182891655", - "customer_short_name":"EUROPLUS", - "product_type_description":"PA", - "delivery_sequence_number":"69", - "delivery_moment":"2022-11-08T12:16:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0580783929751196", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RH6NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8875255695579", - "lng":"5.72939182891655", - "delivery_code":"", - "full_address_for_navigation":"WEERTERSTRAAT 6, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907233", - "finished_at":"2022-11-08 12:33:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:16" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085564849", - "pid":"JVGL40046376001219987951", - "postal_code_numeric":"6231", - "postal_code_alpha":"RE", - "street":"WEERT", - "house_number":"53", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8844482631803", - "address_longitude":"5.73333972988604", - "customer_short_name":"Horecamaterialen De Meester Nv", - "product_type_description":"BP", - "delivery_sequence_number":"70", - "delivery_moment":"2022-11-08T12:18:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL40046376001219987951", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RE53", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8844482631803", - "lng":"5.73333972988604", - "delivery_code":"", - "full_address_for_navigation":"WEERT 53, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907445", - "finished_at":"2022-11-08 12:37:25 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:18" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1079926612", - "pid":"3SALX000007172455", - "postal_code_numeric":"6231", - "postal_code_alpha":"RE", - "street":"WEERT", - "house_number":"43", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.884043766909", - "address_longitude":"5.73312881587497", - "customer_short_name":"********", - "product_type_description":null, - "delivery_sequence_number":"71", - "delivery_moment":"2022-11-08T12:19:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SALX000007172455", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RE43", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.884043766909", - "lng":"5.73312881587497", - "delivery_code":"", - "full_address_for_navigation":"WEERT 43, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907508", - "finished_at":"2022-11-08 12:38:28 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:19" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085294516", - "pid":"JVGL06161392000396570926", - "postal_code_numeric":"6231", - "postal_code_alpha":"RE", - "street":"WEERT", - "house_number":"33", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8838395834776", - "address_longitude":"5.73251286366304", - "customer_short_name":"Osmo Nederland - Team Osmo", - "product_type_description":null, - "delivery_sequence_number":"72", - "delivery_moment":"2022-11-08T12:20:58+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06161392000396570926", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RE33", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8838395834776", - "lng":"5.73251286366304", - "delivery_code":"", - "full_address_for_navigation":"WEERT 33, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907581", - "finished_at":"2022-11-08 12:39:41 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:20" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084511045", - "pid":"JVGL05488739001281596373", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"79", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8872047960225", - "address_longitude":"5.7348040156694", - "customer_short_name":"A1 Touch Solution BV - Mevr. F. Maussen", - "product_type_description":null, - "delivery_sequence_number":"73", - "delivery_moment":"2022-11-08T12:23:17+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL05488739001281596373", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231NC79NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8872047960225", - "lng":"5.7348040156694", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 79, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907733", - "finished_at":"2022-11-08 12:42:13 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:23" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084064410", - "pid":"JJD000090254011007839954", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"79", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8872047960225", - "address_longitude":"5.7348040156694", - "customer_short_name":"AMAZON", - "product_type_description":null, - "delivery_sequence_number":"74", - "delivery_moment":"2022-11-08T12:23:17+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD000090254011007839954", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231NC79", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JJD000090254011007839954", - "JJD000090254011007840760" - ], - "group_parcel_keys":[ - "1084064410", - "1084105545" - ], - "group_sender_names":"AMAZON, BP・AMAZON", - "lat":"50.8872047960225", - "lng":"5.7348040156694", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 79, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907743", - "finished_at":"2022-11-08 12:42:23 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:23" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084105545", - "pid":"JJD000090254011007840760", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"79", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8872047960225", - "address_longitude":"5.7348040156694", - "customer_short_name":"AMAZON", - "product_type_description":"BP", - "delivery_sequence_number":"75", - "delivery_moment":"2022-11-08T12:23:17+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD000090254011007840760", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231NC79", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JJD000090254011007839954", - "JJD000090254011007840760" - ], - "group_parcel_keys":[ - "1084064410", - "1084105545" - ], - "group_sender_names":"AMAZON, BP・AMAZON", - "lat":"50.8872047960225", - "lng":"5.7348040156694", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 79, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907744", - "finished_at":"2022-11-08 12:42:24 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:23" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084545925", - "pid":"JVGL06234678001895260286", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"7", - "house_number_addition":"-", - "city":"MEERSSEN", - "address_latitude":"50.8874276104599", - "address_longitude":"5.73600450976754", - "customer_short_name":"VoetbalDirect.nl ", - "product_type_description":null, - "delivery_sequence_number":"76", - "delivery_moment":"2022-11-08T12:25:17+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06234678001895260286", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231NC7-", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8874276104599", - "lng":"5.73600450976754", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 7, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907833", - "finished_at":"2022-11-08 12:43:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:25" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717271", - "pid":"JVGL0152514601134650", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"25", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8873853372337", - "address_longitude":"5.7370842083482", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"77", - "delivery_moment":"2022-11-08T12:26:50+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"11", - "scanned_in_trip":"true", - "parcel_id":"JVGL0152514601134650", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231NC25NBB", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL0152514601134650", - "JVGL0152514601134482" - ], - "group_parcel_keys":[ - "1085717271", - "1085716987" - ], - "group_sender_names":"EUROPLUS", - "lat":"50.8873853372337", - "lng":"5.7370842083482", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 25, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907916", - "finished_at":"2022-11-08 12:45:16 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:26" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716943", - "pid":"3SAFHMAA4059344227", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"25", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8873853372337", - "address_longitude":"5.7370842083482", - "customer_short_name":"AFHALEN OP SERVICEPOINT", - "product_type_description":null, - "delivery_sequence_number":"78", - "delivery_moment":"2022-11-08T12:26:50+01:00", - "begin_delivery_pickup_window":"1970-01-01T09:00:00+01:00", - "end_delivery_pickup_window":"1970-01-01T17:00:00+01:00", - "delivery_instruction":"VVA ", - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"0", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"25", - "scanned_in_trip":"true", - "parcel_id":"3SAFHMAA4059344227", - "timeframe":"09:00-17:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"P_09:00_17:00_6231NC25", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8873853372337", - "lng":"5.7370842083482", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 25, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908013", - "finished_at":"2022-11-08 12:46:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:26" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716987", - "pid":"JVGL0152514601134482", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"25", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8873853372337", - "address_longitude":"5.7370842083482", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"79", - "delivery_moment":"2022-11-08T12:26:50+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"11", - "scanned_in_trip":"true", - "parcel_id":"JVGL0152514601134482", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231NC25NBB", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL0152514601134650", - "JVGL0152514601134482" - ], - "group_parcel_keys":[ - "1085717271", - "1085716987" - ], - "group_sender_names":"EUROPLUS", - "lat":"50.8873853372337", - "lng":"5.7370842083482", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 25, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667907916", - "finished_at":"2022-11-08 12:45:16 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:26" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717291", - "pid":"JVGL0609581402855543", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"11", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8880255350284", - "address_longitude":"5.73669384296444", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"80", - "delivery_moment":"2022-11-08T12:28:46+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0609581402855543", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231NC11NBB", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL0609581402855543", - "JVGL0609581402855542" - ], - "group_parcel_keys":[ - "1085717291", - "1085717293" - ], - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8880255350284", - "lng":"5.73669384296444", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 11, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908268", - "finished_at":"2022-11-08 12:51:08 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:28" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717293", - "pid":"JVGL0609581402855542", - "postal_code_numeric":"6231", - "postal_code_alpha":"NC", - "street":"WEERTERVELD", - "house_number":"11", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8880255350284", - "address_longitude":"5.73669384296444", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"81", - "delivery_moment":"2022-11-08T12:28:46+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0609581402855542", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231NC11NBB", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL0609581402855543", - "JVGL0609581402855542" - ], - "group_parcel_keys":[ - "1085717291", - "1085717293" - ], - "group_sender_names":"VP・EUROPLUS, EUROPLUS", - "lat":"50.8880255350284", - "lng":"5.73669384296444", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 11, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908268", - "finished_at":"2022-11-08 12:51:08 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:28" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716949", - "pid":"JVGL054240800000120070101", - "postal_code_numeric":"6231", - "postal_code_alpha":"ND", - "street":"WEERTERVELD", - "house_number":"16", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8883121583079", - "address_longitude":"5.738128907005", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"82", - "delivery_moment":"2022-11-08T12:30:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL054240800000120070101", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231ND16NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8883121583079", - "lng":"5.738128907005", - "delivery_code":"", - "full_address_for_navigation":"WEERTERVELD 16, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908409", - "finished_at":"2022-11-08 12:53:29 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:30" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085413789", - "pid":"3SMF6297119", - "postal_code_numeric":"6231", - "postal_code_alpha":"EK", - "street":"BUNDERSTR", - "house_number":"257", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8887721751259", - "address_longitude":"5.74273056600914", - "customer_short_name":"Drs. Leenarts", - "product_type_description":null, - "delivery_sequence_number":"83", - "delivery_moment":"2022-11-08T12:34:12+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "lng":"5.74273056600914", - "p_number":"639174", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231EK257", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "finished_at_timestamp":"1667908705", - "finished":"true", - "intervention_data":{ - "agreedPlace":{ - "placeDescription":"Onder de carport tussen de 2 gft- containers", - "agreeWithTerms":"true" - }, - "timestamp":"2022-11-07T23:49:05.000+01:00", - "status":"SUCCEEDED", - "parcelId":"3SMF6297119", - "interventionId":"43745972", - "type":"agreed_place", - "agreed_place_description":"Onder de carport tussen de 2 gft- containers" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197722688", + "pid": "3SLDL5002822134", + "postal_code_numeric": "6241", + "postal_code_alpha": "GG", + "street": "Prins Johan Frisolaan", + "house_number": "6", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8926679077966", + "address_longitude": "5.73918665953538", + "customer_short_name": "LIDL", + "product_type_description": "VP", + "delivery_sequence_number": "2", + "delivery_moment": "2023-04-19T10:45:02+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SLDL5002822134", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GG6", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8926679077966", + "lng": "5.73918665953538", + "delivery_code": "", + "full_address_for_navigation": "PRINS JOHAN FRISOLAAN 6, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894391", + "finished_at": "2023-04-19 10:53:11 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:45" }, - "grouped":"false", - "full_address_for_navigation":"BUNDERSTRAAT 257, MEERSSEN", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 12:58:25 +0100", - "group_pids":[ - - ], - "intervention_message_confirmed":"true", - "group_task_index":"0", - "group_size":"1", - "parcel_id":"3SMF6297119", - "is_intervention":"true", - "lat":"50.8887721751259", - "eta":"12:34" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084931826", - "pid":"3SQLW856547864", - "postal_code_numeric":"6231", - "postal_code_alpha":"EP", - "street":"BUNDERSTR", - "house_number":"236", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8886355307457", - "address_longitude":"5.74343609397251", - "customer_short_name":"Vitapharma.be", - "product_type_description":null, - "delivery_sequence_number":"84", - "delivery_moment":"2022-11-08T12:35:41+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"31", - "scanned_in_trip":"true", - "parcel_id":"3SQLW856547864", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EP236", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8886355307457", - "lng":"5.74343609397251", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 236, MEERSSEN", - "eta":"12:35" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084937279", - "pid":"JVGL06164453001606131837", - "postal_code_numeric":"6231", - "postal_code_alpha":"DT", - "street":"WEERTERBROEKPLNTS", - "house_number":"3", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8879112488924", - "address_longitude":"5.74327718178224", - "customer_short_name":"Toilet Tapes B.V. - Fulfillment", - "product_type_description":null, - "delivery_sequence_number":"85", - "delivery_moment":"2022-11-08T12:37:20+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"31", - "lng":"5.74327718178224", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231DT3", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "intervention_data":{ - "timeframeChange":{ - "timeframe":{ - "from":"2022-11-10T10:00:00.000+01:00", - "to":"2022-11-10T15:00:00.000+01:00" - } - }, - "timestamp":"2022-11-08T11:10:29.000+01:00", - "status":"PENDING", - "parcelId":"JVGL06164453001606131837", - "interventionId":"43773648", - "type":"to_later", - "parcelKey":"1084937279" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197725182", + "pid": "JVGL0596168500814687", + "postal_code_numeric": "6241", + "postal_code_alpha": "GL", + "street": "Prins Willem Alexanderlaan", + "house_number": "22", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.892679358781", + "address_longitude": "5.7382286901121", + "customer_short_name": "Meyer", + "product_type_description": null, + "delivery_sequence_number": "3", + "delivery_moment": "2023-04-19T10:46:48+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL0596168500814687", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GL22", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.892679358781", + "lng": "5.7382286901121", + "delivery_code": "", + "full_address_for_navigation": "PRINS WILLEM ALEXANDERLAAN 22, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894465", + "finished_at": "2023-04-19 10:54:25 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:46" }, - "grouped":"false", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 3, MEERSSEN", - "scanned_in_trip":"true", - "intervention_message_confirmed":"true", - "group_pids":[ - - ], - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL06164453001606131837", - "is_intervention":"true", - "lat":"50.8879112488924", - "eta":"12:37" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085133286", - "pid":"3SHEM2699334901", - "postal_code_numeric":"6231", - "postal_code_alpha":"DT", - "street":"WEERTERBROEKPLNTS", - "house_number":"5", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8878286452819", - "address_longitude":"5.74324670321218", - "customer_short_name":"HEMA", - "product_type_description":null, - "delivery_sequence_number":"86", - "delivery_moment":"2022-11-08T12:38:45+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SHEM2699334901", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DT5", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8878286452819", - "lng":"5.74324670321218", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 5, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908920", - "finished_at":"2022-11-08 13:02:00 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:38" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084979966", - "pid":"JVGL06213730001159735094", - "postal_code_numeric":"6231", - "postal_code_alpha":"DT", - "street":"WEERTERBROEKPLNTS", - "house_number":"9", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8876630150617", - "address_longitude":"5.74320634886735", - "customer_short_name":"Raamkado.nl", - "product_type_description":null, - "delivery_sequence_number":"87", - "delivery_moment":"2022-11-08T12:40:10+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06213730001159735094", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DT9", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8876630150617", - "lng":"5.74320634886735", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 9, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908967", - "finished_at":"2022-11-08 13:02:47 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:40" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084635396", - "pid":"3SST0001448453", - "postal_code_numeric":"6231", - "postal_code_alpha":"DV", - "street":"WEERTERBROEKPLNTS", - "house_number":"67", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8883045355276", - "address_longitude":"5.74189448998115", - "customer_short_name":"STRADIVARIUS", - "product_type_description":null, - "delivery_sequence_number":"88", - "delivery_moment":"2022-11-08T12:41:54+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB ", - "indication_not_at_neighbours":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"10", - "scanned_in_trip":"true", - "parcel_id":"3SST0001448453", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DV67NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8883045355276", - "lng":"5.74189448998115", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 67, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909171", - "finished_at":"2022-11-08 13:06:11 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:41" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084958596", - "pid":"JUN491599949120181014716", - "postal_code_numeric":"6231", - "postal_code_alpha":"DV", - "street":"WEERTERBROEKPLNTS", - "house_number":"73", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.888461226129", - "address_longitude":"5.74197754702805", - "customer_short_name":"WEHKAMP", - "product_type_description":null, - "delivery_sequence_number":"89", - "delivery_moment":"2022-11-08T12:43:19+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JUN491599949120181014716", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231DV73", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JUN491599949120181080042", - "JUN491599949120181014716" - ], - "group_parcel_keys":[ - "1085444101", - "1084958596" - ], - "group_sender_names":"PA・WEHKAMP, WEHKAMP", - "lat":"50.888461226129", - "lng":"5.74197754702805", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 73, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909209", - "finished_at":"2022-11-08 13:06:49 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:43" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085444101", - "pid":"JUN491599949120181080042", - "postal_code_numeric":"6231", - "postal_code_alpha":"DV", - "street":"WEERTERBROEKPLNTS", - "house_number":"73", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.888461226129", - "address_longitude":"5.74197754702805", - "customer_short_name":"WEHKAMP", - "product_type_description":"PA", - "delivery_sequence_number":"90", - "delivery_moment":"2022-11-08T12:43:19+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JUN491599949120181080042", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231DV73", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JUN491599949120181080042", - "JUN491599949120181014716" - ], - "group_parcel_keys":[ - "1085444101", - "1084958596" - ], - "group_sender_names":"PA・WEHKAMP, WEHKAMP", - "lat":"50.888461226129", - "lng":"5.74197754702805", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 73, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909209", - "finished_at":"2022-11-08 13:06:49 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:43" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084968364", - "pid":"JVGL06097034001562460173", - "postal_code_numeric":"6231", - "postal_code_alpha":"DW", - "street":"WEERTERBROEKPLNTS", - "house_number":"24", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8878212230602", - "address_longitude":"5.74221081424164", - "customer_short_name":"Verstappen.com - ", - "product_type_description":null, - "delivery_sequence_number":"91", - "delivery_moment":"2022-11-08T12:45:12+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06097034001562460173", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DW24", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8878212230602", - "lng":"5.74221081424164", - "delivery_code":"", - "full_address_for_navigation":"WEERTERBROEKPLANTSOEN 24, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909065", - "finished_at":"2022-11-08 13:04:25 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:45" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085269862", - "pid":"3SMPK11666106", - "postal_code_numeric":"6231", - "postal_code_alpha":"ED", - "street":"ST JOSEPHSTR", - "house_number":"97", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8869518868789", - "address_longitude":"5.74104555212098", - "customer_short_name":"TopLEDshop", - "product_type_description":"BP", - "delivery_sequence_number":"92", - "delivery_moment":"2022-11-08T12:47:13+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SMPK11666106", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231ED97", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8869518868789", - "lng":"5.74104555212098", - "delivery_code":"", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 97, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909358", - "finished_at":"2022-11-08 13:09:18 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:47" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084940630", - "pid":"JVGL05707328001900210606", - "postal_code_numeric":"6231", - "postal_code_alpha":"ED", - "street":"ST JOSEPHSTR", - "house_number":"67", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8868249176986", - "address_longitude":"5.74173578397941", - "customer_short_name":"Vivisol Nederland BV - postpakket ", - "product_type_description":null, - "delivery_sequence_number":"93", - "delivery_moment":"2022-11-08T12:48:43+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "lng":"5.74173578397941", - "p_number":"639174", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231ED67", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "finished_at_timestamp":"1667909472", - "finished":"true", - "intervention_data":{ - "deliveryAddressChange":{ - "street":"Sint Josephstraat", - "city":"Meerssen", - "postalCode":"6231ED", - "houseNumber":{ - "number":"69", - "suffix":"6231ed" - } - }, - "timestamp":"2022-11-07T19:22:52.000+01:00", - "status":"SUCCEEDED", - "parcelId":"JVGL05707328001900210606", - "interventionId":"43733802", - "type":"address_change" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197055220", + "pid": "3SSEV0000005593", + "postal_code_numeric": "6241", + "postal_code_alpha": "GL", + "street": "Prins Willem Alexanderlaan", + "house_number": "10", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8911645171398", + "address_longitude": "5.7387154661375", + "customer_short_name": "c/o DHL Parcel Geomix", + "product_type_description": null, + "delivery_sequence_number": "4", + "delivery_moment": "2023-04-19T10:48:38+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SSEV0000005593", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GL10", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8911645171398", + "lng": "5.7387154661375", + "delivery_code": "", + "full_address_for_navigation": "PRINS WILLEM ALEXANDERLAAN 10, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894543", + "finished_at": "2023-04-19 10:55:43 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:48" }, - "grouped":"false", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 67, MEERSSEN", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 13:11:12 +0100", - "intervention_message_confirmed":"true", - "group_pids":[ - - ], - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL05707328001900210606", - "is_intervention":"true", - "lat":"50.8868249176986", - "eta":"12:48" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1081733799", - "pid":"3SWLT0027172899", - "postal_code_numeric":"6231", - "postal_code_alpha":"EG", - "street":"ST JOSEPHSTR", - "house_number":"78", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8870047314436", - "address_longitude":"5.74181176761154", - "customer_short_name":"YUNEXPRESS NETHERLANDS B.V.", - "product_type_description":null, - "delivery_sequence_number":"94", - "delivery_moment":"2022-11-08T12:50:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SWLT0027172899", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231EG78", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06213730001320916164", - "3SWLT0027172899" - ], - "group_parcel_keys":[ - "1085043790", - "1081733799" - ], - "group_sender_names":"BP・Essentialiving, YUNEXPRESS NETHERLANDS B.V.", - "lat":"50.8870047314436", - "lng":"5.74181176761154", - "delivery_code":"", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 78, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909529", - "finished_at":"2022-11-08 13:12:09 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:50" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085043790", - "pid":"JVGL06213730001320916164", - "postal_code_numeric":"6231", - "postal_code_alpha":"EG", - "street":"ST JOSEPHSTR", - "house_number":"78", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8870047314436", - "address_longitude":"5.74181176761154", - "customer_short_name":"Essentialiving", - "product_type_description":"BP", - "delivery_sequence_number":"95", - "delivery_moment":"2022-11-08T12:50:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06213730001320916164", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231EG78", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06213730001320916164", - "3SWLT0027172899" - ], - "group_parcel_keys":[ - "1085043790", - "1081733799" - ], - "group_sender_names":"BP・Essentialiving, YUNEXPRESS NETHERLANDS B.V.", - "lat":"50.8870047314436", - "lng":"5.74181176761154", - "delivery_code":"", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 78, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909529", - "finished_at":"2022-11-08 13:12:09 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:50" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085529458", - "pid":"3SETR0300193484", - "postal_code_numeric":"6231", - "postal_code_alpha":"EC", - "street":"ST JOSEPHSTR", - "house_number":"31", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8865854679185", - "address_longitude":"5.74377798930114", - "customer_short_name":"Etrias", - "product_type_description":null, - "delivery_sequence_number":"96", - "delivery_moment":"2022-11-08T12:52:02+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SETR0300193484", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EC31", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8865854679185", - "lng":"5.74377798930114", - "delivery_code":"", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 31, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909633", - "finished_at":"2022-11-08 13:13:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:52" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084621709", - "pid":"3SPSL0002316643", - "postal_code_numeric":"6231", - "postal_code_alpha":"EE", - "street":"ST JOSEPHSTR", - "house_number":"24", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8867408762154", - "address_longitude":"5.74422664904475", - "customer_short_name":"ZOOPLUS", - "product_type_description":null, - "delivery_sequence_number":"97", - "delivery_moment":"2022-11-08T12:53:31+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SPSL0002316643", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EE24", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8867408762154", - "lng":"5.74422664904475", - "delivery_code":"", - "full_address_for_navigation":"SINT JOSEPHSTRAAT 24, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909692", - "finished_at":"2022-11-08 13:14:52 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:53" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085065690", - "pid":"JVGL06213730000512336265", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"49", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.886343607607", - "address_longitude":"5.74204415733271", - "customer_short_name":"By Peachi", - "product_type_description":null, - "delivery_sequence_number":"98", - "delivery_moment":"2022-11-08T12:55:27+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"21", - "scanned_in_trip":"true", - "parcel_id":"JVGL06213730000512336265", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EB49", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.886343607607", - "lng":"5.74204415733271", - "delivery_code":"", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 49, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667909984", - "finished_at":"2022-11-08 13:19:44 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:55" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084987475", - "pid":"JVGL06254965001170413311", - "postal_code_numeric":"6231", - "postal_code_alpha":"DA", - "street":"PROOSTENHOF", - "house_number":"17", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8863173369064", - "address_longitude":"5.74105434161277", - "customer_short_name":"By-Kie - ", - "product_type_description":null, - "delivery_sequence_number":"99", - "delivery_moment":"2022-11-08T12:57:08+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"31", - "lng":"5.74105434161277", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231DA17", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "intervention_data":{ - "servicePointDelivery":{ - "servicePointId":"NL-623175" - }, - "timestamp":"2022-11-08T06:46:50.000+01:00", - "status":"SUCCEEDED", - "parcelId":"JVGL06254965001170413311", - "interventionId":"43754693", - "type":"to_sp", - "parcelKey":"1084987475" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1193758639", + "pid": "CG201382880DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "GJ", + "street": "Prins Clauslaan", + "house_number": "44", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8921514980497", + "address_longitude": "5.73880255370452", + "customer_short_name": "ZAK", + "product_type_description": null, + "delivery_sequence_number": "5", + "delivery_moment": "2023-04-19T10:50:37+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "21", + "scanned_in_trip": "true", + "parcel_id": "CG201382880DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GJ44", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8921514980497", + "lng": "5.73880255370452", + "delivery_code": "", + "full_address_for_navigation": "PRINS CLAUSLAAN 44, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894703", + "finished_at": "2023-04-19 10:58:23 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:50" }, - "grouped":"false", - "full_address_for_navigation":"PROOSTENHOF 17, MEERSSEN", - "scanned_in_trip":"true", - "intervention_message_confirmed":"true", - "group_pids":[ - - ], - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL06254965001170413311", - "is_intervention":"true", - "lat":"50.8863173369064", - "eta":"12:57" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085045021", - "pid":"3SZAL020088946", - "postal_code_numeric":"6231", - "postal_code_alpha":"DA", - "street":"PROOSTENHOF", - "house_number":"1", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8859048233846", - "address_longitude":"5.74173427622487", - "customer_short_name":"ZALANDO SE", - "product_type_description":null, - "delivery_sequence_number":"100", - "delivery_moment":"2022-11-08T12:58:41+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SZAL020088946", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DA1", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8859048233846", - "lng":"5.74173427622487", - "delivery_code":"", - "full_address_for_navigation":"PROOSTENHOF 1, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667910070", - "finished_at":"2022-11-08 13:21:10 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"12:58" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085327869", - "pid":"JVGL06024046000555453266", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"15", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8829263161249", - "address_longitude":"5.74788387365338", - "customer_short_name":"DHL Zending - Fotoproduct", - "product_type_description":null, - "delivery_sequence_number":"101", - "delivery_moment":"2022-11-08T13:01:04+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06024046000555453266", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EB15NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8829263161249", - "lng":"5.74788387365338", - "delivery_code":"", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 15, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667910281", - "finished_at":"2022-11-08 13:24:41 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:01" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084865552", - "pid":"3SALPK138442401", - "postal_code_numeric":"6231", - "postal_code_alpha":"CT", - "street":"FREDERIKSTR", - "house_number":"23", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.884317800329", - "address_longitude":"5.74828406849499", - "customer_short_name":"Sightful", - "product_type_description":"BP", - "delivery_sequence_number":"102", - "delivery_moment":"2022-11-08T13:03:04+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SALPK138442401", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CT23", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.884317800329", - "lng":"5.74828406849499", - "delivery_code":"", - "full_address_for_navigation":"PROOST FREDERIKSTRAAT 23, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667910555", - "finished_at":"2022-11-08 13:29:15 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084262848", - "pid":"3SALPK133154301", - "postal_code_numeric":"6231", - "postal_code_alpha":"CT", - "street":"FREDERIKSTR", - "house_number":"19", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8844572362335", - "address_longitude":"5.74862335125109", - "customer_short_name":"Verisure NL", - "product_type_description":null, - "delivery_sequence_number":"103", - "delivery_moment":"2022-11-08T13:04:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SALPK133154301", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CT19", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8844572362335", - "lng":"5.74862335125109", - "delivery_code":"", - "full_address_for_navigation":"PROOST FREDERIKSTRAAT 19, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667910606", - "finished_at":"2022-11-08 13:30:06 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:04" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085000297", - "pid":"JJD0000900623271480636276", - "postal_code_numeric":"6231", - "postal_code_alpha":"CT", - "street":"FREDERIKSTR", - "house_number":"7", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8844306368211", - "address_longitude":"5.7497121867507", - "customer_short_name":"123InstallatieMaterialen", - "product_type_description":null, - "delivery_sequence_number":"104", - "delivery_moment":"2022-11-08T13:06:11+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD0000900623271480636276", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CT7", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8844306368211", - "lng":"5.7497121867507", - "delivery_code":"", - "full_address_for_navigation":"PROOST FREDERIKSTRAAT 7, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667910693", - "finished_at":"2022-11-08 13:31:33 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:06" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084887025", - "pid":"3SQLW856295414", - "postal_code_numeric":"6231", - "postal_code_alpha":"DX", - "street":"MONTFORTANENPLN", - "house_number":"13", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8847072213466", - "address_longitude":"5.75011422122842", - "customer_short_name":"AMG (A4G)", - "product_type_description":null, - "delivery_sequence_number":"105", - "delivery_moment":"2022-11-08T13:08:19+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SQLW856295414", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231DX13", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8847072213466", - "lng":"5.75011422122842", - "delivery_code":"", - "full_address_for_navigation":"MONTFORTANENPLEIN 13, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667911313", - "finished_at":"2022-11-08 13:41:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:08" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716962", - "pid":"JVGL0609581402852696", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"1", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8831085515473", - "address_longitude":"5.75000022835971", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"106", - "delivery_moment":"2022-11-08T13:10:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "lng":"5.75000022835971", - "p_number":"639174", - "active_group_size":"4", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - "1085716960", - "1085716961", - "1085716962", - "1085716963" - ], - "group_id":"10:00_15:00_6231EB1NBB", - "group_first":"false", - "group_sender_names":"VP・EUROPLUS", - "delivery_code":"", - "finished_at_timestamp":"1667911797", - "finished":"true", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 1, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 13:49:57 +0100", - "group_pids":[ - "JVGL0609581402852685", - "JVGL0609581402852691", - "JVGL0609581402852696", - "JVGL0609581402852707" - ], - "group_task_index":"2", - "group_size":"4", - "parcel_id":"JVGL0609581402852696", - "lat":"50.8831085515473", - "eta":"13:10" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716961", - "pid":"JVGL0609581402852691", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"1", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8831085515473", - "address_longitude":"5.75000022835971", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"107", - "delivery_moment":"2022-11-08T13:10:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "lng":"5.75000022835971", - "p_number":"639174", - "active_group_size":"4", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - "1085716960", - "1085716961", - "1085716962", - "1085716963" - ], - "group_id":"10:00_15:00_6231EB1NBB", - "group_first":"false", - "group_sender_names":"VP・EUROPLUS", - "delivery_code":"", - "finished_at_timestamp":"1667911797", - "finished":"true", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 1, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 13:49:57 +0100", - "group_pids":[ - "JVGL0609581402852685", - "JVGL0609581402852691", - "JVGL0609581402852696", - "JVGL0609581402852707" - ], - "group_task_index":"1", - "group_size":"4", - "parcel_id":"JVGL0609581402852691", - "lat":"50.8831085515473", - "eta":"13:10" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716963", - "pid":"JVGL0609581402852707", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"1", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8831085515473", - "address_longitude":"5.75000022835971", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"108", - "delivery_moment":"2022-11-08T13:10:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "lng":"5.75000022835971", - "p_number":"639174", - "active_group_size":"4", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - "1085716960", - "1085716961", - "1085716962", - "1085716963" - ], - "group_id":"10:00_15:00_6231EB1NBB", - "group_first":"false", - "group_sender_names":"VP・EUROPLUS", - "delivery_code":"", - "finished_at_timestamp":"1667911797", - "finished":"true", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 1, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 13:49:57 +0100", - "group_pids":[ - "JVGL0609581402852685", - "JVGL0609581402852691", - "JVGL0609581402852696", - "JVGL0609581402852707" - ], - "group_task_index":"3", - "group_size":"4", - "parcel_id":"JVGL0609581402852707", - "lat":"50.8831085515473", - "eta":"13:10" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716960", - "pid":"JVGL0609581402852685", - "postal_code_numeric":"6231", - "postal_code_alpha":"EB", - "street":"DE BEAUFORTSTR", - "house_number":"1", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8831085515473", - "address_longitude":"5.75000022835971", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"109", - "delivery_moment":"2022-11-08T13:10:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "lng":"5.75000022835971", - "p_number":"639174", - "active_group_size":"4", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - "1085716960", - "1085716961", - "1085716962", - "1085716963" - ], - "group_id":"10:00_15:00_6231EB1NBB", - "group_first":"true", - "group_sender_names":"VP・EUROPLUS", - "delivery_code":"", - "finished_at_timestamp":"1667911796", - "finished":"true", - "full_address_for_navigation":"PROOST DE BEAUFORTSTRAAT 1, MEERSSEN", - "grouped":"true", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 13:49:56 +0100", - "group_pids":[ - "JVGL0609581402852685", - "JVGL0609581402852691", - "JVGL0609581402852696", - "JVGL0609581402852707" - ], - "group_task_index":"0", - "group_size":"4", - "parcel_id":"JVGL0609581402852685", - "lat":"50.8831085515473", - "eta":"13:10" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085021860", - "pid":"CD119435364BE", - "postal_code_numeric":"6231", - "postal_code_alpha":"CL", - "street":"STATIONSTRAAT", - "house_number":"20", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8842903592102", - "address_longitude":"5.75242246219502", - "customer_short_name":"TOPSBRANDS", - "product_type_description":null, - "delivery_sequence_number":"110", - "delivery_moment":"2022-11-08T13:13:02+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"CD119435364BE", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CL20", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8842903592102", - "lng":"5.75242246219502", - "delivery_code":"", - "full_address_for_navigation":"STATIONSTRAAT 20, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912163", - "finished_at":"2022-11-08 13:56:03 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:13" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085259799", - "pid":"3SNKD005562044", - "postal_code_numeric":"6231", - "postal_code_alpha":"EL", - "street":"BUNDERSTR", - "house_number":"4", - "house_number_addition":"A", - "city":"MEERSSEN", - "address_latitude":"50.8851462708161", - "address_longitude":"5.75272919231528", - "customer_short_name":"Nakdcom One World AB", - "product_type_description":null, - "delivery_sequence_number":"111", - "delivery_moment":"2022-11-08T13:14:48+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"10", - "scanned_in_trip":"true", - "parcel_id":"3SNKD005562044", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EL4A", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8851462708161", - "lng":"5.75272919231528", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 4, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912311", - "finished_at":"2022-11-08 13:58:31 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:14" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083594540", - "pid":"3STPC208549756", - "postal_code_numeric":"6231", - "postal_code_alpha":"EH", - "street":"BUNDERSTR", - "house_number":"13", - "house_number_addition":"-a", - "city":"MEERSSEN", - "address_latitude":"50.8850443", - "address_longitude":"5.752246", - "customer_short_name":"VakantieVeilingen.nl", - "product_type_description":null, - "delivery_sequence_number":"112", - "delivery_moment":"2022-11-08T13:16:18+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3STPC208549756", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EH13-A", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8850443", - "lng":"5.752246", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 13, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912423", - "finished_at":"2022-11-08 14:00:23 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:16" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085027103", - "pid":"JVGL06156715002077854282", - "postal_code_numeric":"6231", - "postal_code_alpha":"EH", - "street":"BUNDERSTR", - "house_number":"21", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8851233561638", - "address_longitude":"5.75187285463378", - "customer_short_name":"Bol Sales - ", - "product_type_description":null, - "delivery_sequence_number":"113", - "delivery_moment":"2022-11-08T13:17:43+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"31", - "lng":"5.75187285463378", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231EH21", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "intervention_data":{ - "timeframeChange":{ - "timeframe":{ - "from":"2022-11-09T10:00:00.000+01:00", - "to":"2022-11-09T15:00:00.000+01:00" - } - }, - "timestamp":"2022-11-08T07:11:50.000+01:00", - "status":"SUCCEEDED", - "parcelId":"JVGL06156715002077854282", - "interventionId":"43756710", - "type":"to_later", - "parcelKey":"1085027103" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198346496", + "pid": "JJD0612777300000001189575", + "postal_code_numeric": "6241", + "postal_code_alpha": "GA", + "street": "Kloosterweg", + "house_number": "5", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8931986784873", + "address_longitude": "5.7406083987999", + "customer_short_name": "Otrium", + "product_type_description": "PA", + "delivery_sequence_number": "6", + "delivery_moment": "2023-04-19T10:52:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JJD0612777300000001189575", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GA5", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8931986784873", + "lng": "5.7406083987999", + "delivery_code": "", + "full_address_for_navigation": "KLOOSTERWEG 5, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681894844", + "finished_at": "2023-04-19 11:00:44 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:52" }, - "grouped":"false", - "full_address_for_navigation":"BUNDERSTRAAT 21, MEERSSEN", - "scanned_in_trip":"true", - "intervention_message_confirmed":"true", - "group_pids":[ - - ], - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL06156715002077854282", - "is_intervention":"true", - "lat":"50.8851233561638", - "eta":"13:17" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085716948", - "pid":"JVGL0352436040510347", - "postal_code_numeric":"6231", - "postal_code_alpha":"EH", - "street":"BUNDERSTR", - "house_number":"27", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8851794608709", - "address_longitude":"5.75149758210842", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"114", - "delivery_moment":"2022-11-08T13:19:16+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0352436040510347", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EH27NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8851794608709", - "lng":"5.75149758210842", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 27, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912521", - "finished_at":"2022-11-08 14:02:01 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:19" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084736480", - "pid":"3SHM00003117266", - "postal_code_numeric":"6231", - "postal_code_alpha":"EJ", - "street":"BUNDERSTR", - "house_number":"85", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8855665262755", - "address_longitude":"5.74796910959138", - "customer_short_name":"H&M", - "product_type_description":null, - "delivery_sequence_number":"116", - "delivery_moment":"2022-11-08T13:22:34+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SHM00003117266", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EJ85", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8855665262755", - "lng":"5.74796910959138", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 85, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912634", - "finished_at":"2022-11-08 14:03:54 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:22" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1078919072", - "pid":"3SABCM104006332", - "postal_code_numeric":"6231", - "postal_code_alpha":"EJ", - "street":"BUNDERSTR", - "house_number":"133", - "house_number_addition":"B", - "city":"MEERSSEN", - "address_latitude":"50.8861943197992", - "address_longitude":"5.74629309935501", - "customer_short_name":"BEIJING YANWEN", - "product_type_description":null, - "delivery_sequence_number":"117", - "delivery_moment":"2022-11-08T13:24:11+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SABCM104006332", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EJ133B", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8861943197992", - "lng":"5.74629309935501", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 133, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912692", - "finished_at":"2022-11-08 14:04:52 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:24" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084992925", - "pid":"3SZAL020088162", - "postal_code_numeric":"6231", - "postal_code_alpha":"EJ", - "street":"BUNDERSTR", - "house_number":"155", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.886449912892", - "address_longitude":"5.74549484857377", - "customer_short_name":"ZALANDO SE", - "product_type_description":null, - "delivery_sequence_number":"118", - "delivery_moment":"2022-11-08T13:25:42+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SZAL020088162", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231EJ155", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.886449912892", - "lng":"5.74549484857377", - "delivery_code":"", - "full_address_for_navigation":"BUNDERSTRAAT 155, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912782", - "finished_at":"2022-11-08 14:06:22 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"13:25" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084903591", - "pid":"JVGL06024343001362012527", - "postal_code_numeric":"6231", - "postal_code_alpha":"ER", - "street":"HOOGVELDWG", - "house_number":"3", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8869199464731", - "address_longitude":"5.74552179364247", - "customer_short_name":"Warehouse Commaxx Ecommerce - Warehouse", - "product_type_description":null, - "delivery_sequence_number":"119", - "delivery_moment":"2022-11-08T14:00:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06024343001362012527", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231ER3", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8869199464731", - "lng":"5.74552179364247", - "delivery_code":"", - "full_address_for_navigation":"HOOGVELDWEG 3, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912832", - "finished_at":"2022-11-08 14:07:12 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:00" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1080267339", - "pid":"3SWLT0027129420", - "postal_code_numeric":"6231", - "postal_code_alpha":"ER", - "street":"HOOGVELDWG", - "house_number":"7", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8870271163484", - "address_longitude":"5.74563048239518", - "customer_short_name":"YUNEXPRESS NETHERLANDS B.V.", - "product_type_description":null, - "delivery_sequence_number":"120", - "delivery_moment":"2022-11-08T14:01:25+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SWLT0027129420", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231ER7", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8870271163484", - "lng":"5.74563048239518", - "delivery_code":"", - "full_address_for_navigation":"HOOGVELDWEG 7, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667912942", - "finished_at":"2022-11-08 14:09:02 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:01" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085076699", - "pid":"JVGL06059703001887274854", - "postal_code_numeric":"6231", - "postal_code_alpha":"ES", - "street":"HOOGVELDWG", - "house_number":"43", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8877177929593", - "address_longitude":"5.74630559062402", - "customer_short_name":" Gezamenlijk Voordeel B.V.", - "product_type_description":null, - "delivery_sequence_number":"121", - "delivery_moment":"2022-11-08T14:03:11+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06059703001887274854", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231ES43", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8877177929593", - "lng":"5.74630559062402", - "delivery_code":"", - "full_address_for_navigation":"HOOGVELDWEG 43, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913013", - "finished_at":"2022-11-08 14:10:13 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:03" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085591827", - "pid":"JVGL0622182440514202", - "postal_code_numeric":"6231", - "postal_code_alpha":"EV", - "street":"PAST CREUSENPLNTS", - "house_number":"34", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8871086268552", - "address_longitude":"5.7478626161026", - "customer_short_name":"T-mobile Thuis", - "product_type_description":null, - "delivery_sequence_number":"122", - "delivery_moment":"2022-11-08T14:04:55+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0622182440514202", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231EV34", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8871086268552", - "lng":"5.7478626161026", - "delivery_code":"", - "full_address_for_navigation":"PASTOOR CREUSENPLANTSOEN 34, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913136", - "finished_at":"2022-11-08 14:12:16 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:04" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085632227", - "pid":"JVGL0582186326965581", - "postal_code_numeric":"6231", - "postal_code_alpha":"ES", - "street":"HOOGVELDWG", - "house_number":"57", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8880191613091", - "address_longitude":"5.74660394377107", - "customer_short_name":"Celluloid", - "product_type_description":null, - "delivery_sequence_number":"123", - "delivery_moment":"2022-11-08T14:06:41+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0582186326965581", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231ES57", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8880191613091", - "lng":"5.74660394377107", - "delivery_code":"", - "full_address_for_navigation":"HOOGVELDWEG 57, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913243", - "finished_at":"2022-11-08 14:14:03 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:06" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084886581", - "pid":"3SMML0001567591", - "postal_code_numeric":"6231", - "postal_code_alpha":"EX", - "street":"Oranje Nassaustraat", - "house_number":"3", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8888591177674", - "address_longitude":"5.74418290921455", - "customer_short_name":"EUROPLUS", - "product_type_description":"VP", - "delivery_sequence_number":"124", - "delivery_moment":"2022-11-08T14:09:06+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"14:00-18:00", - "next_timeframe_descr_full":"MIDDAG2", - "next_delivery_day":"wo", - "parcel_status_key":"24", - "scanned_in_trip":"true", - "parcel_id":"3SMML0001567591", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231EX3NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8888591177674", - "lng":"5.74418290921455", - "delivery_code":"", - "full_address_for_navigation":"ORANJE NASSAUSTRAAT 3, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667908040", - "finished_at":"2022-11-08 12:47:20 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:09" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083731384", - "pid":"3SBPB0003222819", - "postal_code_numeric":"6231", - "postal_code_alpha":"NA", - "street":"Jan van Puijenbroeckstraat", - "house_number":"40", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8870407735894", - "address_longitude":"5.74932268679563", - "customer_short_name":"Notino", - "product_type_description":null, - "delivery_sequence_number":"125", - "delivery_moment":"2022-11-08T14:12:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SBPB0003222819", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231NA40", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8870407735894", - "lng":"5.74932268679563", - "delivery_code":"", - "full_address_for_navigation":"JAN VAN PUIJENBROECKSTRAAT 40, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913363", - "finished_at":"2022-11-08 14:16:03 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:12" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083741754", - "pid":"JVGL06151401002043368729", - "postal_code_numeric":"6231", - "postal_code_alpha":"NB", - "street":"V PUYENBROECKSTR", - "house_number":"23", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8867190085716", - "address_longitude":"5.74913315771072", - "customer_short_name":"Jeans Centre - ", - "product_type_description":null, - "delivery_sequence_number":"126", - "delivery_moment":"2022-11-08T14:13:26+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "lng":"5.74913315771072", - "p_number":"639174", - "active_group_size":"1", - "timeframe":"14:00-18:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - - ], - "group_id":"14:00_18:00_6231NB23", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "finished_at_timestamp":"1667913441", - "finished":"true", - "intervention_data":{ - "agreedPlace":{ - "placeDescription":"Naast voordeur onder bankje", - "agreeWithTerms":"true" - }, - "timestamp":"2022-11-08T00:02:17.000+01:00", - "status":"SUCCEEDED", - "parcelId":"JVGL06151401002043368729", - "interventionId":"43746207", - "type":"agreed_place", - "agreed_place_description":"Naast voordeur onder bankje" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198295590", + "pid": "3SRTU01680231", + "postal_code_numeric": "6241", + "postal_code_alpha": "GA", + "street": "Kloosterweg", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8938045312274", + "address_longitude": "5.74043053569757", + "customer_short_name": "RITUALS", + "product_type_description": null, + "delivery_sequence_number": "7", + "delivery_moment": "2023-04-19T10:54:25+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T07:24:19.518517", + "parcelId": "3SRTU01680231", + "interventionId": "018797f8-85be-4b29-a965-766f8fa7cca2", + "agreed_place_description": "Bij geen gehoor door poortje lopen en in BANKJE leggen rechts naast huis", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:15.203842", + "parcelKey": "1198295590" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681894935", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8938045312274", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018797f8-85be-4b29-a965-766f8fa7cca2", + "finished_at": "2023-04-19 11:02:15 +0200", + "lng": "5.74043053569757", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241GA13", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "KLOOSTERWEG 13, BUNDE", + "parcel_id": "3SRTU01680231", + "eta": "10:54" }, - "grouped":"false", - "full_address_for_navigation":"JAN VAN PUIJENBROECKSTRAAT 23, MEERSSEN", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 14:17:21 +0100", - "group_pids":[ - - ], - "intervention_message_confirmed":"true", - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL06151401002043368729", - "is_intervention":"true", - "lat":"50.8867190085716", - "eta":"14:13" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084918221", - "pid":"3SHEM2697900401", - "postal_code_numeric":"6231", - "postal_code_alpha":"NB", - "street":"Jan van Puijenbroeckstraat", - "house_number":"11", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8864334055046", - "address_longitude":"5.74924807485894", - "customer_short_name":"HEMA", - "product_type_description":null, - "delivery_sequence_number":"127", - "delivery_moment":"2022-11-08T14:15:03+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SHEM2697900401", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231NB11", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8864334055046", - "lng":"5.74924807485894", - "delivery_code":"", - "full_address_for_navigation":"JAN VAN PUIJENBROECKSTRAAT 11, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913549", - "finished_at":"2022-11-08 14:19:09 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:15" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084571140", - "pid":"3SQLW855620817", - "postal_code_numeric":"6231", - "postal_code_alpha":"NA", - "street":"V PUYENBROECKSTR", - "house_number":"8", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.886142470464", - "address_longitude":"5.74930605049989", - "customer_short_name":"Panterstore", - "product_type_description":null, - "delivery_sequence_number":"128", - "delivery_moment":"2022-11-08T14:16:32+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SQLW855620817", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231NA8", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.886142470464", - "lng":"5.74930605049989", - "delivery_code":"", - "full_address_for_navigation":"JAN VAN PUIJENBROECKSTRAAT 8, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913601", - "finished_at":"2022-11-08 14:20:01 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:16" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085717292", - "pid":"JVGL0609581402855787", - "postal_code_numeric":"6231", - "postal_code_alpha":"RM", - "street":"VOGELZANG", - "house_number":"66", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8895427158363", - "address_longitude":"5.76296801565667", - "customer_short_name":"EUROPLUS", - "product_type_description":null, - "delivery_sequence_number":"129", - "delivery_moment":"2022-11-08T14:21:18+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"14:00-18:00", - "next_timeframe_descr_full":"MIDDAG2", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0609581402855787", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231RM66NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8895427158363", - "lng":"5.76296801565667", - "delivery_code":"", - "full_address_for_navigation":"VOGELZANG 66, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667913901", - "finished_at":"2022-11-08 14:25:01 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:21" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085102975", - "pid":"JVGL05762596000736976208", - "postal_code_numeric":"6231", - "postal_code_alpha":"LX", - "street":"VAUWERHOF", - "house_number":"32", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8837293247604", - "address_longitude":"5.7582992636124", - "customer_short_name":"Able & Borret BV - ", - "product_type_description":null, - "delivery_sequence_number":"130", - "delivery_moment":"2022-11-08T14:24:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL05762596000736976208", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231LX32", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8837293247604", - "lng":"5.7582992636124", - "delivery_code":"", - "full_address_for_navigation":"VAUWERHOF 32, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667914128", - "finished_at":"2022-11-08 14:28:48 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:24" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085339963", - "pid":"JVGL0621376340536286", - "postal_code_numeric":"6231", - "postal_code_alpha":"LW", - "street":"VAUWERHOF", - "house_number":"39", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8838943779523", - "address_longitude":"5.75890947271113", - "customer_short_name":"Suitsuit", - "product_type_description":null, - "delivery_sequence_number":"131", - "delivery_moment":"2022-11-08T14:26:09+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL0621376340536286", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231LW39", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8838943779523", - "lng":"5.75890947271113", - "delivery_code":"", - "full_address_for_navigation":"VAUWERHOF 39, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667914307", - "finished_at":"2022-11-08 14:31:47 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:26" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085009500", - "pid":"JJD0000900612904380648750", - "postal_code_numeric":"6231", - "postal_code_alpha":"RT", - "street":"VROENHOFWG", - "house_number":"3", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8794893185736", - "address_longitude":"5.77103700770751", - "customer_short_name":"VitamineB12nu", - "product_type_description":null, - "delivery_sequence_number":"132", - "delivery_moment":"2022-11-08T14:29:05+01:00", - "begin_delivery_pickup_window":"2022-11-08T14:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD0000900612904380648750", - "timeframe":"14:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"14:00_18:00_6231RT3", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8794893185736", - "lng":"5.77103700770751", - "delivery_code":"", - "full_address_for_navigation":"VROENHOFWEG 3, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667914503", - "finished_at":"2022-11-08 14:35:03 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:29" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083985316", - "pid":"3SDFC0166619470", - "postal_code_numeric":"6231", - "postal_code_alpha":"RW", - "street":"Veeweg", - "house_number":"9", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8809611084437", - "address_longitude":"5.75967151727789", - "customer_short_name":"Studio Roos en Mees", - "product_type_description":null, - "delivery_sequence_number":"133", - "delivery_moment":"2022-11-08T14:32:36+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SDFC0166619470", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RW9", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8809611084437", - "lng":"5.75967151727789", - "delivery_code":"", - "full_address_for_navigation":"VEEWEG 9, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667914885", - "finished_at":"2022-11-08 14:41:25 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:32" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085563050", - "pid":"JVGL40048945000705425122", - "postal_code_numeric":"6231", - "postal_code_alpha":"RW", - "street":"VEEWEG", - "house_number":"5", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8811944974025", - "address_longitude":"5.75868161668707", - "customer_short_name":"Smophy", - "product_type_description":null, - "delivery_sequence_number":"134", - "delivery_moment":"2022-11-08T14:34:09+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL40048945000705425122", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231RW5", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8811944974025", - "lng":"5.75868161668707", - "delivery_code":"", - "full_address_for_navigation":"VEEWEG 5, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667914754", - "finished_at":"2022-11-08 14:39:14 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:34" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083680560", - "pid":"JVGL06094122002068401417", - "postal_code_numeric":"6231", - "postal_code_alpha":"CH", - "street":"ZR PALADIAPLNTS", - "house_number":"25", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8822511799036", - "address_longitude":"5.74914436585548", - "customer_short_name":"BeeZ.nl - Paul Schmits", - "product_type_description":null, - "delivery_sequence_number":"135", - "delivery_moment":"2022-11-08T14:37:10+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06094122002068401417", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CH25NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8822511799036", - "lng":"5.74914436585548", - "delivery_code":"", - "full_address_for_navigation":"ZUSTER PALADIAPLANTSOEN 25, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915248", - "finished_at":"2022-11-08 14:47:28 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:37" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085181899", - "pid":"JUN491599949120181041320", - "postal_code_numeric":"6231", - "postal_code_alpha":"CC", - "street":"TUSSEN DE BRUGGEN", - "house_number":"2", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8810156975939", - "address_longitude":"5.74999348346175", - "customer_short_name":"WEHKAMP", - "product_type_description":"PA", - "delivery_sequence_number":"136", - "delivery_moment":"2022-11-08T14:39:10+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JUN491599949120181041320", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CC2", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8810156975939", - "lng":"5.74999348346175", - "delivery_code":"", - "full_address_for_navigation":"TUSSEN DE BRUGGEN 2, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915358", - "finished_at":"2022-11-08 14:49:18 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:39" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084898393", - "pid":"JVGL06227151000224539002", - "postal_code_numeric":"6231", - "postal_code_alpha":"CA", - "street":"TUSSEN DE BRUGGEN", - "house_number":"45", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8794432812356", - "address_longitude":"5.7461615338094", - "customer_short_name":"Light of the Moon - LOTM", - "product_type_description":null, - "delivery_sequence_number":"137", - "delivery_moment":"2022-11-08T14:41:03+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06227151000224539002", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231CA45", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8794432812356", - "lng":"5.7461615338094", - "delivery_code":"", - "full_address_for_navigation":"TUSSEN DE BRUGGEN 45, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915471", - "finished_at":"2022-11-08 14:51:11 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:41" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084165773", - "pid":"3SQLW854430816", - "postal_code_numeric":"6231", - "postal_code_alpha":"BD", - "street":"KLINKENBERG", - "house_number":"18", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8788863191993", - "address_longitude":"5.74208584025921", - "customer_short_name":"Ijzerwinkel", - "product_type_description":null, - "delivery_sequence_number":"138", - "delivery_moment":"2022-11-08T14:43:04+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SQLW854430816", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BD18", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8788863191993", - "lng":"5.74208584025921", - "delivery_code":"", - "full_address_for_navigation":"KLINKENBERG 18, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915625", - "finished_at":"2022-11-08 14:53:45 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:43" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084765320", - "pid":"3SBHP007333416", - "postal_code_numeric":"6231", - "postal_code_alpha":"BB", - "street":"KLINKENBERG", - "house_number":"97", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8776346930135", - "address_longitude":"5.73871073651841", - "customer_short_name":"Bax Music", - "product_type_description":"VP", - "delivery_sequence_number":"139", - "delivery_moment":"2022-11-08T14:45:10+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SBHP007333416", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BB97", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8776346930135", - "lng":"5.73871073651841", - "delivery_code":"", - "full_address_for_navigation":"KLINKENBERG 97, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915864", - "finished_at":"2022-11-08 14:57:44 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:45" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085387948", - "pid":"3SDGB109962783", - "postal_code_numeric":"6231", - "postal_code_alpha":"BG", - "street":"KLINKENBERG", - "house_number":"106", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8776470886021", - "address_longitude":"5.7380922245383", - "customer_short_name":"DOUGLAS", - "product_type_description":null, - "delivery_sequence_number":"140", - "delivery_moment":"2022-11-08T14:46:40+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SDGB109962783", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BG106", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8776470886021", - "lng":"5.7380922245383", - "delivery_code":"", - "full_address_for_navigation":"KLINKENBERG 106, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667915991", - "finished_at":"2022-11-08 14:59:51 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:46" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085122882", - "pid":"JJD0000900586750280620358", - "postal_code_numeric":"6231", - "postal_code_alpha":"BB", - "street":"KLINKENBERG", - "house_number":"107", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8774871394891", - "address_longitude":"5.73828224775407", - "customer_short_name":"Best Petfoods", - "product_type_description":null, - "delivery_sequence_number":"141", - "delivery_moment":"2022-11-08T14:48:05+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JJD0000900586750280620358", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BB107", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8774871394891", - "lng":"5.73828224775407", - "delivery_code":"", - "full_address_for_navigation":"KLINKENBERG 107, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916043", - "finished_at":"2022-11-08 15:00:43 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:48" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085290156", - "pid":"JVGL06020630001472663999", - "postal_code_numeric":"6231", - "postal_code_alpha":"BR", - "street":"KERKWG", - "house_number":"17", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8779330997596", - "address_longitude":"5.73720711252274", - "customer_short_name":"Heating - Mark", - "product_type_description":null, - "delivery_sequence_number":"142", - "delivery_moment":"2022-11-08T14:49:57+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06020630001472663999", - "timeframe":"10:00-15:00", - "group_first":"false", - "group_task_index":"1", - "grouped":"true", - "group_id":"10:00_15:00_6231BR17", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06045132000032363426", - "JVGL06020630001472663999" - ], - "group_parcel_keys":[ - "1083790947", - "1085290156" - ], - "group_sender_names":"VP・Flinq commerce - , Heating - Mark", - "lat":"50.8779330997596", - "lng":"5.73720711252274", - "delivery_code":"", - "full_address_for_navigation":"KERKWEG 17, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916171", - "finished_at":"2022-11-08 15:02:51 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:49" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085100813", - "pid":"JVGL06020630001335582734", - "postal_code_numeric":"6231", - "postal_code_alpha":"BR", - "street":"KERKWG", - "house_number":"17", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8779330997596", - "address_longitude":"5.73720711252274", - "customer_short_name":"Heating - Mark", - "product_type_description":null, - "delivery_sequence_number":"143", - "delivery_moment":"2022-11-08T14:49:57+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"NBB Handt ", - "indication_not_at_neighbours":true, - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06020630001335582734", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BR17NBB", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8779330997596", - "lng":"5.73720711252274", - "delivery_code":"", - "full_address_for_navigation":"KERKWEG 17, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916233", - "finished_at":"2022-11-08 15:03:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:49" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083790947", - "pid":"JVGL06045132000032363426", - "postal_code_numeric":"6231", - "postal_code_alpha":"BR", - "street":"KERKWG", - "house_number":"17", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8779330997596", - "address_longitude":"5.73720711252274", - "customer_short_name":"Flinq commerce - ", - "product_type_description":"VP", - "delivery_sequence_number":"144", - "delivery_moment":"2022-11-08T14:49:57+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"10:00-15:00", - "next_timeframe_descr_full":"MIDDAG1", - "next_delivery_day":"wo", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL06045132000032363426", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"true", - "group_id":"10:00_15:00_6231BR17", - "group_size":"2", - "active_group_size":"2", - "group_pids":[ - "JVGL06045132000032363426", - "JVGL06020630001472663999" - ], - "group_parcel_keys":[ - "1083790947", - "1085290156" - ], - "group_sender_names":"VP・Flinq commerce - , Heating - Mark", - "lat":"50.8779330997596", - "lng":"5.73720711252274", - "delivery_code":"", - "full_address_for_navigation":"KERKWEG 17, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916171", - "finished_at":"2022-11-08 15:02:51 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:49" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1079770527", - "pid":"3SABCM104012401", - "postal_code_numeric":"6231", - "postal_code_alpha":"BR", - "street":"KERKWG", - "house_number":"37", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8784955487981", - "address_longitude":"5.73767639474898", - "customer_short_name":"BEIJING YANWEN", - "product_type_description":"BP", - "delivery_sequence_number":"145", - "delivery_moment":"2022-11-08T14:51:52+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"3SABCM104012401", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BR37", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8784955487981", - "lng":"5.73767639474898", - "delivery_code":"", - "full_address_for_navigation":"KERKWEG 37, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916281", - "finished_at":"2022-11-08 15:04:41 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:51" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084945140", - "pid":"JVGL05762596001238417507", - "postal_code_numeric":"6231", - "postal_code_alpha":"BT", - "street":"KON LODEWYKSTR", - "house_number":"27", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8801589718058", - "address_longitude":"5.73973431074988", - "customer_short_name":"Allteq BV - ", - "product_type_description":null, - "delivery_sequence_number":"146", - "delivery_moment":"2022-11-08T14:53:56+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"JVGL05762596001238417507", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BT27", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8801589718058", - "lng":"5.73973431074988", - "delivery_code":"", - "full_address_for_navigation":"KONING LODEWIJKSTRAAT 27, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916377", - "finished_at":"2022-11-08 15:06:17 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:53" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1083581992", - "pid":"CM423785197DE", - "postal_code_numeric":"6231", - "postal_code_alpha":"BT", - "street":"KON LODEWYKSTR", - "house_number":"11", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8804780482766", - "address_longitude":"5.74071500590221", - "customer_short_name":"Saal Digital Fotoservice GmbH NL", - "product_type_description":null, - "delivery_sequence_number":"147", - "delivery_moment":"2022-11-08T14:55:33+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":"Handt ", - "indication_signature_required":true, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "scanned_in_trip":"true", - "parcel_id":"CM423785197DE", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BT11", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8804780482766", - "lng":"5.74071500590221", - "delivery_code":"", - "full_address_for_navigation":"KONING LODEWIJKSTRAAT 11, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916473", - "finished_at":"2022-11-08 15:07:53 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:55" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1084149592", - "pid":"3SLDL0011453104", - "postal_code_numeric":"6231", - "postal_code_alpha":"BV", - "street":"KON KARELSTR", - "house_number":"15", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.8799649713988", - "address_longitude":"5.74044808774636", - "customer_short_name":"LIDL", - "product_type_description":"PA", - "delivery_sequence_number":"148", - "delivery_moment":"2022-11-08T14:57:15+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"21", - "scanned_in_trip":"true", - "parcel_id":"3SLDL0011453104", - "timeframe":"10:00-15:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"10:00_15:00_6231BV15", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8799649713988", - "lng":"5.74044808774636", - "delivery_code":"", - "full_address_for_navigation":"KONING KARELSTRAAT 15, MEERSSEN", - "finished":"true", - "finished_at_timestamp":"1667916606", - "finished_at":"2022-11-08 15:10:06 +0100", - "p_number":"639174", - "device_name":"Honeywell CT60", - "eta":"14:57" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085360154", - "pid":"JVGL0597696440549226", - "postal_code_numeric":"6231", - "postal_code_alpha":"AD", - "street":"HOLSTR", - "house_number":"2", - "house_number_addition":null, - "city":"MEERSSEN", - "address_latitude":"50.878337554611", - "address_longitude":"5.74150098065976", - "customer_short_name":"Ehbo Koffer", - "product_type_description":null, - "delivery_sequence_number":"149", - "delivery_moment":"2022-11-08T14:59:29+01:00", - "begin_delivery_pickup_window":"2022-11-08T10:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T15:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"1", - "servicepoint_parcel":false, - "servicepointid":"0", - "next_timeframe_descr_abbrevation":"Naar ServicePoint", - "parcel_status_key":"22", - "lng":"5.74150098065976", - "p_number":"639174", - "active_group_size":"1", - "timeframe":"10:00-15:00", - "device_name":"Honeywell CT60", - "group_parcel_keys":[ - - ], - "group_id":"10:00_15:00_6231AD2", - "group_first":"true", - "group_sender_names":"", - "delivery_code":"", - "finished_at_timestamp":"1667916777", - "finished":"true", - "intervention_data":{ - "agreedPlace":{ - "placeDescription":"In de brievenbus", - "agreeWithTerms":"true" - }, - "timestamp":"2022-11-07T21:37:23.000+01:00", - "status":"SUCCEEDED", - "parcelId":"JVGL0597696440549226", - "interventionId":"43740229", - "type":"agreed_place", - "agreed_place_description":"In de brievenbus" + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197999975", + "pid": "3STSN100889020", + "postal_code_numeric": "6241", + "postal_code_alpha": "GA", + "street": "Kloosterweg", + "house_number": "25", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8945467619359", + "address_longitude": "5.74083544501038", + "customer_short_name": "Sacha", + "product_type_description": null, + "delivery_sequence_number": "8", + "delivery_moment": "2023-04-19T10:56:10+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T10:03:14.179895", + "parcelId": "3STSN100889020", + "interventionId": "0187988a-0283-4b80-bc43-035a1d6ba868", + "agreed_place_description": "Rechts achterom door hekje. Links op een zonnebedje!", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:15.36112", + "parcelKey": "1197999975" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681895069", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8945467619359", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "0187988a-0283-4b80-bc43-035a1d6ba868", + "finished_at": "2023-04-19 11:04:29 +0200", + "lng": "5.74083544501038", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241GA25", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "KLOOSTERWEG 25, BUNDE", + "parcel_id": "3STSN100889020", + "eta": "10:56" }, - "grouped":"false", - "full_address_for_navigation":"HOLSTRAAT 2, MEERSSEN", - "scanned_in_trip":"true", - "finished_at":"2022-11-08 15:12:57 +0100", - "group_pids":[ - - ], - "intervention_message_confirmed":"true", - "group_task_index":"0", - "group_size":"1", - "parcel_id":"JVGL0597696440549226", - "is_intervention":"true", - "lat":"50.878337554611", - "eta":"14:59" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085703494", - "pid":"3SAFH229683682", - "postal_code_numeric":"6231", - "postal_code_alpha":"AJ", - "street":"Heideweg", - "house_number":"6", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8775548130351", - "address_longitude":"5.74255303906336", - "customer_short_name":"AFHALEN OP SERVICEPOINT", - "product_type_description":null, - "delivery_sequence_number":"150", - "delivery_moment":"2022-11-08T16:00:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T16:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"0", - "servicepoint_parcel":true, - "servicepointid":"146434", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"4", - "scanned_in_trip":"true", - "parcel_id":"3SAFH229683682", - "timeframe":"16:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"P_16:00_18:00_6231AJ6SP", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8775548130351", - "lng":"5.74255303906336", - "delivery_code":"", - "full_address_for_navigation":"HEIDEWEG 6, MEERSSEN", - "eta":"16:00" - }, - { - "timeframe_key":"23573", - "trip_key":"19023573", - "parcel_key":"1085703495", - "pid":"3SAFH229683683", - "postal_code_numeric":"6231", - "postal_code_alpha":"BK", - "street":"Maastrichterweg", - "house_number":"12", - "house_number_addition":null, - "city":"Meerssen", - "address_latitude":"50.8856454330772", - "address_longitude":"5.74016774334839", - "customer_short_name":"AFHALEN OP SERVICEPOINT", - "product_type_description":null, - "delivery_sequence_number":"151", - "delivery_moment":"2022-11-08T16:05:00+01:00", - "begin_delivery_pickup_window":"2022-11-08T16:00:00+01:00", - "end_delivery_pickup_window":"2022-11-08T18:00:00+01:00", - "delivery_instruction":null, - "parcel_delivery_remark":null, - "courier_remark":null, - "service_type":"0", - "servicepoint_parcel":true, - "servicepointid":"151616", - "next_timeframe_descr_abbrevation":"Retour naar klant", - "parcel_status_key":"4", - "scanned_in_trip":"true", - "parcel_id":"3SAFH229683683", - "timeframe":"16:00-18:00", - "group_first":"true", - "group_task_index":"0", - "grouped":"false", - "group_id":"P_16:00_18:00_6231BK12SP", - "group_size":"1", - "active_group_size":"1", - "group_pids":[ - - ], - "group_parcel_keys":[ - - ], - "group_sender_names":"", - "lat":"50.8856454330772", - "lng":"5.74016774334839", - "delivery_code":"", - "full_address_for_navigation":"MAASTRICHTERWEG 12, MEERSSEN", - "eta":"16:05" - } - ], - "eta_calculation_success":"true", - "trip_start_request_sent":"true", - "first_stop_lng":"5.74016774334839", - "device_start_lng":"5.7859767", - "device_start_lat":"50.9185597", - "start_km":"21073", - "started":"true", - "last_trip_start_received_at":"1667901383", - "all_tasks_finished":"false", - "all_parcel_keys":"1084788754,1084216240,1083682745,1084422142,1085196486,1084976957,1081975289,1085074363,1085000253,1085648205,1082427835,1084600629,1084255286,1084494778,1084191483,1085559983,1085050947,1084908371,1083477508,1085664715,1085639593,1085645182,1083887445,1079081462,1085438747,1083884939,1084634265,1084647301,1084521455,1084407495,1084375961,1084519176,1084463969,1085165436,1083737340,1085405115,1085408728,1084179161,1085236591,1084623227,1085569207,1084151410,1083858829,1085076140,1085633327,1084908240,1084770644,1076585678,1081417771,1085139206,1085210296,1084744420,1085088952,1085320624,1085214718,1085214719,1085214720,1085717010,1085717262,1085717008,1085717011,1085717009,1085174728,1085717263,1085564849,1079926612,1085294516,1084511045,1084064410,1084105545,1084545925,1085717271,1085716943,1085716987,1085717291,1085717293,1085716949,1085413789,1084931826,1084937279,1085133286,1084979966,1084635396,1084958596,1085444101,1084968364,1085269862,1084940630,1081733799,1085043790,1085529458,1084621709,1085065690,1084987475,1085045021,1085327869,1084865552,1084262848,1085000297,1084887025,1085716962,1085716961,1085716963,1085716960,1085021860,1085259799,1083594540,1085027103,1085716948,1084736480,1078919072,1084992925,1084903591,1080267339,1085076699,1085591827,1085632227,1084886581,1083731384,1083741754,1084918221,1084571140,1085717292,1085102975,1085339963,1085009500,1083985316,1085563050,1083680560,1085181899,1084898393,1084165773,1084765320,1085387948,1085122882,1085290156,1085100813,1083790947,1079770527,1084945140,1083581992,1084149592,1085360154,1085703494,1085703495", - "unique_stops":"93", - "eta_first_stop":"11:03:25", - "first_stop_lat":"50.8856454330772", - "tasks_size":"145", - "enriched_from":"redis", - "tasks_enriched":"true" - } + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198342512", + "pid": "JVGL06240303001312064200", + "postal_code_numeric": "6241", + "postal_code_alpha": "GB", + "street": "Kloosterweg", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8949163383744", + "address_longitude": "5.74058556187618", + "customer_short_name": "EUROPLUS", + "product_type_description": null, + "delivery_sequence_number": "9", + "delivery_moment": "2023-04-19T10:57:43+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06240303001312064200", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GB36NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8949163383744", + "lng": "5.74058556187618", + "delivery_code": "", + "full_address_for_navigation": "KLOOSTERWEG 36, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895163", + "finished_at": "2023-04-19 11:06:03 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195930620", + "pid": "JVGL06240303001350280652", + "postal_code_numeric": "6241", + "postal_code_alpha": "GB", + "street": "Kloosterweg", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8949163383744", + "address_longitude": "5.74058556187618", + "customer_short_name": "VSPV - Melissa Van de Hee", + "product_type_description": null, + "delivery_sequence_number": "10", + "delivery_moment": "2023-04-19T10:57:43+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06240303001350280652", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "10:00_15:00_6241GB36", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "JVGL06240303001350280652", + "JVGL05238746001744625522" + ], + "group_parcel_keys": [ + "1195930620", + "1197553852" + ], + "group_sender_names": "VSPV - Melissa Van de Hee, VP・Alternate Nederland -", + "lat": "50.8949163383744", + "lng": "5.74058556187618", + "delivery_code": "", + "full_address_for_navigation": "KLOOSTERWEG 36, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895139", + "finished_at": "2023-04-19 11:05:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "10:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197553852", + "pid": "JVGL05238746001744625522", + "postal_code_numeric": "6241", + "postal_code_alpha": "GB", + "street": "Kloosterweg", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8949163383744", + "address_longitude": "5.74058556187618", + "customer_short_name": "Alternate Nederland -", + "product_type_description": "VP", + "delivery_sequence_number": "11", + "delivery_moment": "2023-04-19T10:57:43+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-18T21:03:03.602995", + "parcelId": "JVGL05238746001744625522", + "interventionId": "018795bf-bcb3-4c4c-a087-59453df36406", + "agreed_place_description": "Aanbellen Ring Deurbel en voor de voordeur leggen. Dankjewel!!", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T11:05:35.076", + "parcelKey": "1197553852" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195930620", + "1197553852" + ], + "finished_at_timestamp": "1681895139", + "is_intervention": "true", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL06240303001350280652", + "JVGL05238746001744625522" + ], + "lat": "50.8949163383744", + "device_name": "Honeywell CT60", + "active_group_size": "2", + "group_first": "false", + "intervention_id": "018795bf-bcb3-4c4c-a087-59453df36406", + "finished_at": "2023-04-19 11:05:39 +0200", + "lng": "5.74058556187618", + "finished": "true", + "group_size": "2", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241GB36", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "1", + "group_sender_names": "VSPV - Melissa Van de Hee, VP・Alternate Nederland -", + "full_address_for_navigation": "KLOOSTERWEG 36, BUNDE", + "parcel_id": "JVGL05238746001744625522", + "eta": "10:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197782155", + "pid": "3SHM00006494663", + "postal_code_numeric": "6241", + "postal_code_alpha": "GC", + "street": "Huize Overbunde", + "house_number": "4", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8979482630772", + "address_longitude": "5.7411198602237", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "13", + "delivery_moment": "2023-04-19T11:02:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006494663", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GC4", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8979482630772", + "lng": "5.7411198602237", + "delivery_code": "", + "full_address_for_navigation": "HUIZE OVERBUNDE 4, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895298", + "finished_at": "2023-04-19 11:08:18 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:02" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197048568", + "pid": "3SLRD0000111610", + "postal_code_numeric": "6241", + "postal_code_alpha": "EM", + "street": "Prins Bernhardlaan", + "house_number": "12", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.897156193405", + "address_longitude": "5.7393731834234", + "customer_short_name": "LIDL", + "product_type_description": "VP", + "delivery_sequence_number": "14", + "delivery_moment": "2023-04-19T11:04:23+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-18T18:57:47.575232", + "parcelId": "3SLRD0000111610", + "interventionId": "0187954d-0d37-4619-8252-12f84aaa1765", + "agreed_place_description": "Bij de voordeur , achter de bloempot", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:14.460593", + "parcelKey": "1197048568" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681895453", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.897156193405", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "0187954d-0d37-4619-8252-12f84aaa1765", + "finished_at": "2023-04-19 11:10:53 +0200", + "lng": "5.7393731834234", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241EM12", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "PRINS BERNHARDLAAN 12, BUNDE", + "parcel_id": "3SLRD0000111610", + "eta": "11:04" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197759625", + "pid": "3SBCS21586765", + "postal_code_numeric": "6241", + "postal_code_alpha": "EX", + "street": "Koningin Julianastraat", + "house_number": "45", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8957702195334", + "address_longitude": "5.74022253830443", + "customer_short_name": "BOL.COM", + "product_type_description": null, + "delivery_sequence_number": "15", + "delivery_moment": "2023-04-19T11:06:28+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SBCS21586765", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EX45", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8957702195334", + "lng": "5.74022253830443", + "delivery_code": "", + "full_address_for_navigation": "KONINGIN JULIANASTRAAT 45, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895554", + "finished_at": "2023-04-19 11:12:34 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:06" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195058471", + "pid": "CO908805423DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "EX", + "street": "Koningin Julianastraat", + "house_number": "39", + "house_number_addition": ".", + "city": "BUNDE", + "address_latitude": "50.8954483863563", + "address_longitude": "5.73987953325133", + "customer_short_name": "Bulk BULK", + "product_type_description": null, + "delivery_sequence_number": "16", + "delivery_moment": "2023-04-19T11:08:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CO908805423DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EX39.", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8954483863563", + "lng": "5.73987953325133", + "delivery_code": "", + "full_address_for_navigation": "KONINGIN JULIANASTRAAT 39, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895624", + "finished_at": "2023-04-19 11:13:44 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:08" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1194745100", + "pid": "3SWLT0028303494", + "postal_code_numeric": "6241", + "postal_code_alpha": "EX", + "street": "Koningin Julianastraat", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942387599142", + "address_longitude": "5.73884513784084", + "customer_short_name": "YUNEXPRESS NETHERLANDS B.V.", + "product_type_description": null, + "delivery_sequence_number": "17", + "delivery_moment": "2023-04-19T11:09:47+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SWLT0028303494", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EX13", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8942387599142", + "lng": "5.73884513784084", + "delivery_code": "", + "full_address_for_navigation": "KONINGIN JULIANASTRAAT 13, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895693", + "finished_at": "2023-04-19 11:14:53 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:09" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197682012", + "pid": "JVGL06151401001532795800", + "postal_code_numeric": "6241", + "postal_code_alpha": "EW", + "street": "Prinses Beatrixstraat", + "house_number": "7", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.895118928572", + "address_longitude": "5.73858547440893", + "customer_short_name": "Jeans Centre -", + "product_type_description": null, + "delivery_sequence_number": "18", + "delivery_moment": "2023-04-19T11:11:39+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06151401001532795800", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EW7", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.895118928572", + "lng": "5.73858547440893", + "delivery_code": "", + "full_address_for_navigation": "PRINSES BEATRIXSTRAAT 7, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895804", + "finished_at": "2023-04-19 11:16:44 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:11" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197759300", + "pid": "JVGL06097547001876300800", + "postal_code_numeric": "6241", + "postal_code_alpha": "EV", + "street": "Prinses Wilhelminaweg", + "house_number": "21", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8962739313038", + "address_longitude": "5.73724325636459", + "customer_short_name": "Van Breden - Tabe van Breden", + "product_type_description": "VP", + "delivery_sequence_number": "19", + "delivery_moment": "2023-04-19T11:13:33+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06097547001876300800", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EV21", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8962739313038", + "lng": "5.73724325636459", + "delivery_code": "", + "full_address_for_navigation": "PRINSES WILHELMINAWEG 21, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681895906", + "finished_at": "2023-04-19 11:18:26 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:13" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196024163", + "pid": "CR724802283DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "EV", + "street": "Prinses Wilhelminaweg", + "house_number": "33", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8979467427302", + "address_longitude": "5.7369210335779", + "customer_short_name": "AboutYou NL c/o moden Borghaus Inh.", + "product_type_description": null, + "delivery_sequence_number": "20", + "delivery_moment": "2023-04-19T11:15:28+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CR724802283DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EV33", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8979467427302", + "lng": "5.7369210335779", + "delivery_code": "", + "full_address_for_navigation": "PRINSES WILHELMINAWEG 33, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896149", + "finished_at": "2023-04-19 11:22:29 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:15" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197713434", + "pid": "JVGL06176077000076630347", + "postal_code_numeric": "6241", + "postal_code_alpha": "EV", + "street": "Prinses Wilhelminaweg", + "house_number": "35", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.898208732351", + "address_longitude": "5.73684355768971", + "customer_short_name": "kinderkleding-tekoop -", + "product_type_description": null, + "delivery_sequence_number": "21", + "delivery_moment": "2023-04-19T11:16:53+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06176077000076630347", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241EV35", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.898208732351", + "lng": "5.73684355768971", + "delivery_code": "", + "full_address_for_navigation": "PRINSES WILHELMINAWEG 35, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896196", + "finished_at": "2023-04-19 11:23:16 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:16" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198018529", + "pid": "3SBCS21590052", + "postal_code_numeric": "6241", + "postal_code_alpha": "CL", + "street": "Spoorstraat", + "house_number": "47", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8981611670038", + "address_longitude": "5.73559719346327", + "customer_short_name": "BOL.COM", + "product_type_description": null, + "delivery_sequence_number": "22", + "delivery_moment": "2023-04-19T11:18:57+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SBCS21590052", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CL47", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8981611670038", + "lng": "5.73559719346327", + "delivery_code": "", + "full_address_for_navigation": "SPOORSTRAAT 47, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896279", + "finished_at": "2023-04-19 11:24:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:18" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197871411", + "pid": "JVGL05931316000109793252", + "postal_code_numeric": "6241", + "postal_code_alpha": "CX", + "street": "'t Kempke", + "house_number": "59", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8993208838091", + "address_longitude": "5.73467914868057", + "customer_short_name": "Helios Holland BV - Wouter Geraedts", + "product_type_description": "PA", + "delivery_sequence_number": "23", + "delivery_moment": "2023-04-19T11:20:54+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "21", + "scanned_in_trip": "true", + "parcel_id": "JVGL05931316000109793252", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CX59", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8993208838091", + "lng": "5.73467914868057", + "delivery_code": "", + "full_address_for_navigation": "'T KEMPKE 59, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896509", + "finished_at": "2023-04-19 11:28:29 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:20" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197568010", + "pid": "3SQLW1147878192", + "postal_code_numeric": "6241", + "postal_code_alpha": "CX", + "street": "'t Kempke", + "house_number": "19", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8991717999678", + "address_longitude": "5.73430618074871", + "customer_short_name": "Fabluxe", + "product_type_description": null, + "delivery_sequence_number": "24", + "delivery_moment": "2023-04-19T11:22:19+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SQLW1147878192", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CX19", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8991717999678", + "lng": "5.73430618074871", + "delivery_code": "", + "full_address_for_navigation": "'T KEMPKE 19, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896543", + "finished_at": "2023-04-19 11:29:03 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:22" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198332121", + "pid": "JVGL0626651400010310", + "postal_code_numeric": "6241", + "postal_code_alpha": "CX", + "street": "'t Kempke", + "house_number": "20", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8991137065899", + "address_longitude": "5.73437454226872", + "customer_short_name": "Marketplace Klingel", + "product_type_description": null, + "delivery_sequence_number": "25", + "delivery_moment": "2023-04-19T11:23:44+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL0626651400010310", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CX20", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8991137065899", + "lng": "5.73437454226872", + "delivery_code": "", + "full_address_for_navigation": "'T KEMPKE 20, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896585", + "finished_at": "2023-04-19 11:29:45 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:23" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197993651", + "pid": "JVGLOTC0040834846", + "postal_code_numeric": "6241", + "postal_code_alpha": "CX", + "street": "'t Kempke", + "house_number": "62", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8996320341113", + "address_longitude": "5.73463386757065", + "customer_short_name": "Petra Swart", + "product_type_description": null, + "delivery_sequence_number": "26", + "delivery_moment": "2023-04-19T11:25:21+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGLOTC0040834846", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CX62", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8996320341113", + "lng": "5.73463386757065", + "delivery_code": "", + "full_address_for_navigation": "'T KEMPKE 62, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896649", + "finished_at": "2023-04-19 11:30:49 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:25" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197820001", + "pid": "3SQLW1148716922", + "postal_code_numeric": "6241", + "postal_code_alpha": "CV", + "street": "Roggeveldstraat", + "house_number": "21", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8984025200202", + "address_longitude": "5.73425094274479", + "customer_short_name": "Very Cherry", + "product_type_description": "BP", + "delivery_sequence_number": "27", + "delivery_moment": "2023-04-19T11:27:23+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SQLW1148716922", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CV21", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8984025200202", + "lng": "5.73425094274479", + "delivery_code": "", + "full_address_for_navigation": "ROGGEVELDSTRAAT 21, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896755", + "finished_at": "2023-04-19 11:32:35 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:27" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198165242", + "pid": "00370730254827844295", + "postal_code_numeric": "6241", + "postal_code_alpha": "CV", + "street": "Roggeveldstraat", + "house_number": "11", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8985206321176", + "address_longitude": "5.73317126766526", + "customer_short_name": "Somfy Bv", + "product_type_description": null, + "delivery_sequence_number": "28", + "delivery_moment": "2023-04-19T11:29:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "00370730254827844295", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CV11", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8985206321176", + "lng": "5.73317126766526", + "delivery_code": "", + "full_address_for_navigation": "ROGGEVELDSTRAAT 11, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896815", + "finished_at": "2023-04-19 11:33:35 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:29" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195702639", + "pid": "JVGL06098735001656373367", + "postal_code_numeric": "6241", + "postal_code_alpha": "CM", + "street": "Pletsstraat", + "house_number": "43", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8987414888837", + "address_longitude": "5.73127261815355", + "customer_short_name": "Podobrace BV -", + "product_type_description": "VP", + "delivery_sequence_number": "29", + "delivery_moment": "2023-04-19T11:30:53+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06098735001656373367", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CM43", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8987414888837", + "lng": "5.73127261815355", + "delivery_code": "", + "full_address_for_navigation": "PLETSSTRAAT 43, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681896961", + "finished_at": "2023-04-19 11:36:01 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:30" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197263351", + "pid": "JVGL450346590458892", + "postal_code_numeric": "6241", + "postal_code_alpha": "CN", + "street": "Pletsstraat", + "house_number": "34", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8978076800347", + "address_longitude": "5.73068361075181", + "customer_short_name": "Distrimedia Nv", + "product_type_description": null, + "delivery_sequence_number": "30", + "delivery_moment": "2023-04-19T11:32:35+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL450346590458892", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CN34", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8978076800347", + "lng": "5.73068361075181", + "delivery_code": "", + "full_address_for_navigation": "PLETSSTRAAT 34, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897020", + "finished_at": "2023-04-19 11:37:00 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:32" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198057514", + "pid": "JJD0612777300000001187560", + "postal_code_numeric": "6241", + "postal_code_alpha": "CM", + "street": "Pletsstraat", + "house_number": "25", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8978496289774", + "address_longitude": "5.73036027032116", + "customer_short_name": "Otrium", + "product_type_description": null, + "delivery_sequence_number": "31", + "delivery_moment": "2023-04-19T11:34:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JJD0612777300000001187560", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CM25", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8978496289774", + "lng": "5.73036027032116", + "delivery_code": "", + "full_address_for_navigation": "PLETSSTRAAT 25, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897056", + "finished_at": "2023-04-19 11:37:36 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:34" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197769682", + "pid": "3SQLW1148545849", + "postal_code_numeric": "6241", + "postal_code_alpha": "CB", + "street": "Sint Agnesstraat", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.897408730158", + "address_longitude": "5.73081297901299", + "customer_short_name": "Mr-Joy", + "product_type_description": "BP", + "delivery_sequence_number": "32", + "delivery_moment": "2023-04-19T11:35:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SQLW1148545849", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CB3", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.897408730158", + "lng": "5.73081297901299", + "delivery_code": "", + "full_address_for_navigation": "SINT AGNESSTRAAT 3, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897105", + "finished_at": "2023-04-19 11:38:25 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:35" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197978824", + "pid": "3SSH738724", + "postal_code_numeric": "6241", + "postal_code_alpha": "CB", + "street": "Sint Agnesstraat", + "house_number": "4", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.89760383897", + "address_longitude": "5.73103787069144", + "customer_short_name": "DSV", + "product_type_description": null, + "delivery_sequence_number": "33", + "delivery_moment": "2023-04-19T11:37:05+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SSH738724", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CB4", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.89760383897", + "lng": "5.73103787069144", + "delivery_code": "", + "full_address_for_navigation": "SINT AGNESSTRAAT 4, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897137", + "finished_at": "2023-04-19 11:38:57 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:37" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197583523", + "pid": "JVGL03532959002126996150", + "postal_code_numeric": "6241", + "postal_code_alpha": "BZ", + "street": "Ingenopestraat", + "house_number": "16", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8966126647692", + "address_longitude": "5.73133126253841", + "customer_short_name": "Ministry of Beauty. -", + "product_type_description": null, + "delivery_sequence_number": "34", + "delivery_moment": "2023-04-19T11:38:54+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL03532959002126996150", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BZ16NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8966126647692", + "lng": "5.73133126253841", + "delivery_code": "", + "full_address_for_navigation": "INGENOPESTRAAT 16, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897289", + "finished_at": "2023-04-19 11:41:29 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:38" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197079451", + "pid": "CI838852747DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "BZ", + "street": "Ingenopestraat", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8963553463584", + "address_longitude": "5.73144120851161", + "customer_short_name": "TB International GmbH WLL Logistik", + "product_type_description": null, + "delivery_sequence_number": "35", + "delivery_moment": "2023-04-19T11:40:19+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CI838852747DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BZ9", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8963553463584", + "lng": "5.73144120851161", + "delivery_code": "", + "full_address_for_navigation": "INGENOPESTRAAT 9, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897338", + "finished_at": "2023-04-19 11:42:18 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:40" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197845021", + "pid": "JVGL08006823000790152794", + "postal_code_numeric": "6241", + "postal_code_alpha": "BR", + "street": "Papenweg", + "house_number": "41", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8954915380039", + "address_longitude": "5.7315250344168", + "customer_short_name": "BeauStore -", + "product_type_description": "BP", + "delivery_sequence_number": "36", + "delivery_moment": "2023-04-19T11:42:12+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL08006823000790152794", + "timeframe": "10:00-15:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "10:00_15:00_6241BR41", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SZAL022030753", + "JVGL08006823000790152794" + ], + "group_parcel_keys": [ + "1197408518", + "1197845021" + ], + "group_sender_names": "ZAL, BP・BeauStore -", + "lat": "50.8954915380039", + "lng": "5.7315250344168", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 41, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897419", + "finished_at": "2023-04-19 11:43:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:42" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197408518", + "pid": "3SZAL022030753", + "postal_code_numeric": "6241", + "postal_code_alpha": "BR", + "street": "Papenweg", + "house_number": "41", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8954915380039", + "address_longitude": "5.7315250344168", + "customer_short_name": "ZAL", + "product_type_description": null, + "delivery_sequence_number": "37", + "delivery_moment": "2023-04-19T11:42:12+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SZAL022030753", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "10:00_15:00_6241BR41", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SZAL022030753", + "JVGL08006823000790152794" + ], + "group_parcel_keys": [ + "1197408518", + "1197845021" + ], + "group_sender_names": "ZAL, BP・BeauStore -", + "lat": "50.8954915380039", + "lng": "5.7315250344168", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 41, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897419", + "finished_at": "2023-04-19 11:43:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:42" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197761782", + "pid": "3SPSL0002759600", + "postal_code_numeric": "6241", + "postal_code_alpha": "BV", + "street": "Papenweg", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8957295832619", + "address_longitude": "5.73166908156072", + "customer_short_name": "ZOOPLUS", + "product_type_description": "VP", + "delivery_sequence_number": "38", + "delivery_moment": "2023-04-19T11:43:51+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SPSL0002759600", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "10:00_15:00_6241BV36", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SPSL0002759600", + "3SHEM2987472801" + ], + "group_parcel_keys": [ + "1197761782", + "1198169875" + ], + "group_sender_names": "VP・ZOOPLUS, HEMA", + "lat": "50.8957295832619", + "lng": "5.73166908156072", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 36, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897475", + "finished_at": "2023-04-19 11:44:35 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:43" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198169875", + "pid": "3SHEM2987472801", + "postal_code_numeric": "6241", + "postal_code_alpha": "BV", + "street": "Papenweg", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8957295832619", + "address_longitude": "5.73166908156072", + "customer_short_name": "HEMA", + "product_type_description": null, + "delivery_sequence_number": "39", + "delivery_moment": "2023-04-19T11:43:51+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHEM2987472801", + "timeframe": "10:00-15:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "10:00_15:00_6241BV36", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SPSL0002759600", + "3SHEM2987472801" + ], + "group_parcel_keys": [ + "1197761782", + "1198169875" + ], + "group_sender_names": "VP・ZOOPLUS, HEMA", + "lat": "50.8957295832619", + "lng": "5.73166908156072", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 36, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897475", + "finished_at": "2023-04-19 11:44:35 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:43" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196515158", + "pid": "JJD149070000081870571", + "postal_code_numeric": "6241", + "postal_code_alpha": "BV", + "street": "Papenweg", + "house_number": "40", + "house_number_addition": "a", + "city": "BUNDE", + "address_latitude": "50.8955791330625", + "address_longitude": "5.73202329287925", + "customer_short_name": "ASOS", + "product_type_description": null, + "delivery_sequence_number": "40", + "delivery_moment": "2023-04-19T11:45:26+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "10", + "scanned_in_trip": "true", + "parcel_id": "JJD149070000081870571", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BV40A", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8955791330625", + "lng": "5.73202329287925", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 40, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897693", + "finished_at": "2023-04-19 11:48:13 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:45" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1194279938", + "pid": "3SABCM104845893", + "postal_code_numeric": "6241", + "postal_code_alpha": "BP", + "street": "Meidoornlaan", + "house_number": "22", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8953178830202", + "address_longitude": "5.73028165155105", + "customer_short_name": "TDG", + "product_type_description": null, + "delivery_sequence_number": "42", + "delivery_moment": "2023-04-19T11:49:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SABCM104845893", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BP22", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8953178830202", + "lng": "5.73028165155105", + "delivery_code": "", + "full_address_for_navigation": "MEIDOORNLAAN 22, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897779", + "finished_at": "2023-04-19 11:49:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:49" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197276369", + "pid": "3SZAL022018752", + "postal_code_numeric": "6241", + "postal_code_alpha": "BN", + "street": "Meidoornlaan", + "house_number": "25", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8956299703396", + "address_longitude": "5.73007133549551", + "customer_short_name": "ZAL", + "product_type_description": null, + "delivery_sequence_number": "43", + "delivery_moment": "2023-04-19T11:50:29+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SZAL022018752", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BN25", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8956299703396", + "lng": "5.73007133549551", + "delivery_code": "", + "full_address_for_navigation": "MEIDOORNLAAN 25, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897825", + "finished_at": "2023-04-19 11:50:25 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:50" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196852497", + "pid": "JVGL06097547002006990918", + "postal_code_numeric": "6241", + "postal_code_alpha": "BP", + "street": "Meidoornlaan", + "house_number": "30", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8956866969292", + "address_longitude": "5.72918854162153", + "customer_short_name": "MVL - .", + "product_type_description": "BP", + "delivery_sequence_number": "44", + "delivery_moment": "2023-04-19T11:52:03+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06097547002006990918", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BP30", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8956866969292", + "lng": "5.72918854162153", + "delivery_code": "", + "full_address_for_navigation": "MEIDOORNLAAN 30, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897880", + "finished_at": "2023-04-19 11:51:20 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:52" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198215284", + "pid": "3SMPK14050062", + "postal_code_numeric": "6241", + "postal_code_alpha": "JC", + "street": "Klumpkestraat", + "house_number": "7", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8962627128034", + "address_longitude": "5.72738669402175", + "customer_short_name": "Stoov BV", + "product_type_description": null, + "delivery_sequence_number": "45", + "delivery_moment": "2023-04-19T11:54:21+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "intervention_data": { + "type": "to_sp", + "createdate": "2023-04-19T07:46:02.06135", + "parcelId": "3SMPK14050062", + "interventionId": "0187980c-65cd-4d30-bcef-df5d585ecb82", + "acknowledgedAt": "2023-04-19T10:37:17.022676", + "parcelKey": "1198215284" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "is_intervention": "true", + "grouped": "false", + "group_pids": [], + "lat": "50.8962627128034", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "0187980c-65cd-4d30-bcef-df5d585ecb82", + "lng": "5.72738669402175", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241JC7", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "KLUMPKESTRAAT 7, BUNDE", + "parcel_id": "3SMPK14050062", + "eta": "11:54" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198229650", + "pid": "JVGL06139257000181689675", + "postal_code_numeric": "6241", + "postal_code_alpha": "JC", + "street": "Klumpkestraat", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8963008254082", + "address_longitude": "5.72723389507426", + "customer_short_name": "EY Amsterdam -", + "product_type_description": null, + "delivery_sequence_number": "46", + "delivery_moment": "2023-04-19T11:55:46+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06139257000181689675", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241JC9", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8963008254082", + "lng": "5.72723389507426", + "delivery_code": "", + "full_address_for_navigation": "KLUMPKESTRAAT 9, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681897970", + "finished_at": "2023-04-19 11:52:50 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:55" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197747920", + "pid": "JVGL06114508001161123888", + "postal_code_numeric": "6241", + "postal_code_alpha": "JD", + "street": "Bellefleurstraat", + "house_number": "12", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8960586737445", + "address_longitude": "5.72664979162446", + "customer_short_name": "Chantino -", + "product_type_description": null, + "delivery_sequence_number": "47", + "delivery_moment": "2023-04-19T11:57:32+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06114508001161123888", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241JD12", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8960586737445", + "lng": "5.72664979162446", + "delivery_code": "", + "full_address_for_navigation": "BELLEFLEURSTRAAT 12, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898217", + "finished_at": "2023-04-19 11:56:57 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197880189", + "pid": "CD129727720BE", + "postal_code_numeric": "6241", + "postal_code_alpha": "JC", + "street": "Klumpkestraat", + "house_number": "14", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8967356356511", + "address_longitude": "5.72698252544389", + "customer_short_name": "GIRLSBOYSTOYS.BE", + "product_type_description": null, + "delivery_sequence_number": "48", + "delivery_moment": "2023-04-19T11:59:27+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CD129727720BE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241JC14", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8967356356511", + "lng": "5.72698252544389", + "delivery_code": "", + "full_address_for_navigation": "KLUMPKESTRAAT 14, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898104", + "finished_at": "2023-04-19 11:55:04 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "11:59" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196574520", + "pid": "JVGL05978853000796946853", + "postal_code_numeric": "6241", + "postal_code_alpha": "JC", + "street": "Klumpkestraat", + "house_number": "12", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8966135126456", + "address_longitude": "5.72721515752232", + "customer_short_name": "Dierapotheek.com - -", + "product_type_description": "VP", + "delivery_sequence_number": "49", + "delivery_moment": "2023-04-19T12:00:52+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL05978853000796946853", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241JC12NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8966135126456", + "lng": "5.72721515752232", + "delivery_code": "", + "full_address_for_navigation": "KLUMPKESTRAAT 12, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898042", + "finished_at": "2023-04-19 11:54:02 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197413921", + "pid": "JVGL05905294001208071318", + "postal_code_numeric": "6241", + "postal_code_alpha": "CR", + "street": "Burchtstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.897195553501", + "address_longitude": "5.72788279208958", + "customer_short_name": "MyMepal BV - Klantenservice", + "product_type_description": null, + "delivery_sequence_number": "50", + "delivery_moment": "2023-04-19T12:02:58+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL05905294001208071318", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CR1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.897195553501", + "lng": "5.72788279208958", + "delivery_code": "", + "full_address_for_navigation": "BURCHTSTRAAT 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898324", + "finished_at": "2023-04-19 11:58:44 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:02" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196943932", + "pid": "3SZR0005692655", + "postal_code_numeric": "6241", + "postal_code_alpha": "DG", + "street": "Heiligenbergstraat", + "house_number": "5", + "house_number_addition": "5", + "city": "BUNDE", + "address_latitude": "50.897731", + "address_longitude": "5.7279575", + "customer_short_name": "ZARA", + "product_type_description": null, + "delivery_sequence_number": "51", + "delivery_moment": "2023-04-19T12:04:41+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB ", + "indication_not_at_neighbours": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SZR0005692655", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DG55NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.897731", + "lng": "5.7279575", + "delivery_code": "", + "full_address_for_navigation": "HEILIGENBERGSTRAAT 5, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898476", + "finished_at": "2023-04-19 12:01:16 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:04" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197744075", + "pid": "JVGL0614010700401729", + "postal_code_numeric": "6241", + "postal_code_alpha": "DG", + "street": "Heiligenbergstraat", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8989130920879", + "address_longitude": "5.72689148735003", + "customer_short_name": "De Badenman Bv", + "product_type_description": null, + "delivery_sequence_number": "52", + "delivery_moment": "2023-04-19T12:06:41+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL0614010700401729", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DG9", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8989130920879", + "lng": "5.72689148735003", + "delivery_code": "", + "full_address_for_navigation": "HEILIGENBERGSTRAAT 9, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898413", + "finished_at": "2023-04-19 12:00:13 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:06" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197025208", + "pid": "JVGL06240303001296770316", + "postal_code_numeric": "6241", + "postal_code_alpha": "DJ", + "street": "Maasstraat", + "house_number": "18", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8994593731385", + "address_longitude": "5.72712648420913", + "customer_short_name": "VSPV - Anita Vos", + "product_type_description": "BP", + "delivery_sequence_number": "53", + "delivery_moment": "2023-04-19T12:08:37+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06240303001296770316", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DJ18", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8994593731385", + "lng": "5.72712648420913", + "delivery_code": "", + "full_address_for_navigation": "MAASSTRAAT 18, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898644", + "finished_at": "2023-04-19 12:04:04 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:08" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1194038580", + "pid": "3SALX000008440744", + "postal_code_numeric": "6241", + "postal_code_alpha": "DK", + "street": "Maasstraat", + "house_number": "13", + "house_number_addition": "13", + "city": "BUNDE", + "address_latitude": "50.8993481552593", + "address_longitude": "5.72603243575266", + "customer_short_name": "********", + "product_type_description": "BP", + "delivery_sequence_number": "54", + "delivery_moment": "2023-04-19T12:10:13+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SALX000008440744", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DK1313", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8993481552593", + "lng": "5.72603243575266", + "delivery_code": "", + "full_address_for_navigation": "MAASSTRAAT 13, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898604", + "finished_at": "2023-04-19 12:03:24 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:10" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197095201", + "pid": "3SLRD0000112143", + "postal_code_numeric": "6241", + "postal_code_alpha": "DN", + "street": "Steinstraat", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8996829959719", + "address_longitude": "5.72655158659398", + "customer_short_name": "LIDL", + "product_type_description": null, + "delivery_sequence_number": "55", + "delivery_moment": "2023-04-19T12:11:55+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-18T21:59:49.391674", + "parcelId": "3SLRD0000112143", + "interventionId": "018795f3-b48f-4a9f-9d99-7da05f199768", + "agreed_place_description": "Indien niemand thuis naast de GFT bak bij de voordeur.", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:14.751004", + "parcelKey": "1197095201" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681898702", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8996829959719", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018795f3-b48f-4a9f-9d99-7da05f199768", + "finished_at": "2023-04-19 12:05:02 +0200", + "lng": "5.72655158659398", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241DN3", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "STEINSTRAAT 3, BUNDE", + "parcel_id": "3SLRD0000112143", + "eta": "12:11" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198047622", + "pid": "3SMDA105399196", + "postal_code_numeric": "6241", + "postal_code_alpha": "DN", + "street": "Steinstraat", + "house_number": "21", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9001748099283", + "address_longitude": "5.72653998530377", + "customer_short_name": "OMODA HOME DELIVERY MMAA", + "product_type_description": null, + "delivery_sequence_number": "56", + "delivery_moment": "2023-04-19T12:13:27+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SMDA105399196", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DN21", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9001748099283", + "lng": "5.72653998530377", + "delivery_code": "", + "full_address_for_navigation": "STEINSTRAAT 21, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898750", + "finished_at": "2023-04-19 12:05:50 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:13" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197616575", + "pid": "JVGL06125819000408837049", + "postal_code_numeric": "6241", + "postal_code_alpha": "DN", + "street": "Steinstraat", + "house_number": "31", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9002741183558", + "address_longitude": "5.72703609637925", + "customer_short_name": "Bulbby -", + "product_type_description": null, + "delivery_sequence_number": "57", + "delivery_moment": "2023-04-19T12:14:57+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06125819000408837049", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DN31", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9002741183558", + "lng": "5.72703609637925", + "delivery_code": "", + "full_address_for_navigation": "STEINSTRAAT 31, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898799", + "finished_at": "2023-04-19 12:06:39 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:14" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196834533", + "pid": "JVGL05890470000276801641", + "postal_code_numeric": "6241", + "postal_code_alpha": "DM", + "street": "In de Winkel", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9010681528351", + "address_longitude": "5.72793590880057", + "customer_short_name": "Barkruk.nl -", + "product_type_description": "VP", + "delivery_sequence_number": "58", + "delivery_moment": "2023-04-19T12:16:54+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL05890470000276801641", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DM13NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9010681528351", + "lng": "5.72793590880057", + "delivery_code": "", + "full_address_for_navigation": "IN DE WINKEL 13, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898906", + "finished_at": "2023-04-19 12:08:26 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:16" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197006177", + "pid": "JVGL06097034001838729758", + "postal_code_numeric": "6241", + "postal_code_alpha": "DM", + "street": "In de Winkel", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9010681528351", + "address_longitude": "5.72793590880057", + "customer_short_name": "Verstappen.com -", + "product_type_description": null, + "delivery_sequence_number": "59", + "delivery_moment": "2023-04-19T12:16:54+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06097034001838729758", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DM13", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9010681528351", + "lng": "5.72793590880057", + "delivery_code": "", + "full_address_for_navigation": "IN DE WINKEL 13, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681898860", + "finished_at": "2023-04-19 12:07:40 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:16" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197694291", + "pid": "3SBPB0004097862", + "postal_code_numeric": "6241", + "postal_code_alpha": "DM", + "street": "In de Winkel", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9007280726193", + "address_longitude": "5.72803830898985", + "customer_short_name": "C-Logistics", + "product_type_description": null, + "delivery_sequence_number": "60", + "delivery_moment": "2023-04-19T12:18:38+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SBPB0004097862", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DM1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9007280726193", + "lng": "5.72803830898985", + "delivery_code": "", + "full_address_for_navigation": "IN DE WINKEL 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899069", + "finished_at": "2023-04-19 12:11:09 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:18" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197685560", + "pid": "JJD0000900623546988756909", + "postal_code_numeric": "6241", + "postal_code_alpha": "DP", + "street": "Steinstraat", + "house_number": "46", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9002684844047", + "address_longitude": "5.72833925905102", + "customer_short_name": "Quispel Motoren", + "product_type_description": "BP", + "delivery_sequence_number": "61", + "delivery_moment": "2023-04-19T12:20:14+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JJD0000900623546988756909", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DP46", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9002684844047", + "lng": "5.72833925905102", + "delivery_code": "", + "full_address_for_navigation": "STEINSTRAAT 46, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899112", + "finished_at": "2023-04-19 12:11:52 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:20" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196679189", + "pid": "CR679237886DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "CZ", + "street": "Kalverhof", + "house_number": "56", + "house_number_addition": ".", + "city": "BUNDE", + "address_latitude": "50.9014169856664", + "address_longitude": "5.72934491647896", + "customer_short_name": "WARDOW GmbH", + "product_type_description": null, + "delivery_sequence_number": "62", + "delivery_moment": "2023-04-19T12:22:12+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CR679237886DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CZ56.", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9014169856664", + "lng": "5.72934491647896", + "delivery_code": "", + "full_address_for_navigation": "KALVERHOF 56, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899217", + "finished_at": "2023-04-19 12:13:37 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:22" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197652218", + "pid": "JVGL06223119001806684799", + "postal_code_numeric": "6241", + "postal_code_alpha": "DA", + "street": "Repenhof", + "house_number": "60", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9017050346753", + "address_longitude": "5.72945081792949", + "customer_short_name": "Berden Fashion Webshop", + "product_type_description": null, + "delivery_sequence_number": "63", + "delivery_moment": "2023-04-19T12:23:48+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06223119001806684799", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DA60", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9017050346753", + "lng": "5.72945081792949", + "delivery_code": "", + "full_address_for_navigation": "REPENHOF 60, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899253", + "finished_at": "2023-04-19 12:14:13 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:23" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197194881", + "pid": "JVGL06188122001730220178", + "postal_code_numeric": "6241", + "postal_code_alpha": "DA", + "street": "Repenhof", + "house_number": "34", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.902121080509", + "address_longitude": "5.7311639942291", + "customer_short_name": "Boekenbalie -", + "product_type_description": null, + "delivery_sequence_number": "64", + "delivery_moment": "2023-04-19T12:25:33+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T04:16:07.610842", + "parcelId": "JVGL06188122001730220178", + "interventionId": "0187974c-38ba-4b4d-acd2-3cc9fe9a664e", + "agreed_place_description": "Achterom bij de deur", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:15.140712", + "parcelKey": "1197194881" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681899326", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.902121080509", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "0187974c-38ba-4b4d-acd2-3cc9fe9a664e", + "finished_at": "2023-04-19 12:15:26 +0200", + "lng": "5.7311639942291", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241DA34", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "REPENHOF 34, BUNDE", + "parcel_id": "JVGL06188122001730220178", + "eta": "12:25" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197664957", + "pid": "JJD0000900618377688720930", + "postal_code_numeric": "6241", + "postal_code_alpha": "DA", + "street": "Repenhof", + "house_number": "30", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9020117305868", + "address_longitude": "5.73157201134678", + "customer_short_name": "Ons Veijf | KamadoBBQ", + "product_type_description": null, + "delivery_sequence_number": "65", + "delivery_moment": "2023-04-19T12:27:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JJD0000900618377688720930", + "timeframe": "10:00-15:00", + "group_first": "false", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DA30", + "group_size": "2", + "active_group_size": "1", + "group_pids": [ + "JJD0000900618377688720930", + "JVGL40049608000640213614" + ], + "group_parcel_keys": [ + "1197664957", + "1198193422" + ], + "group_sender_names": "", + "lat": "50.9020117305868", + "lng": "5.73157201134678", + "delivery_code": "", + "full_address_for_navigation": "REPENHOF 30, BUNDE", + "calculated_group_size": "1", + "calculated_group_pids": [], + "finished": "true", + "finished_at_timestamp": "1681899421", + "finished_at": "2023-04-19 12:17:01 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:27" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198193422", + "pid": "JVGL40049608000640213614", + "postal_code_numeric": "6241", + "postal_code_alpha": "DA", + "street": "Repenhof", + "house_number": "30", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9020117305868", + "address_longitude": "5.73157201134678", + "customer_short_name": "Acaza Nv", + "product_type_description": null, + "delivery_sequence_number": "66", + "delivery_moment": "2023-04-19T12:27:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "10", + "scanned_in_trip": "true", + "parcel_id": "JVGL40049608000640213614", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "1", + "grouped": "false", + "group_id": "10:00_15:00_6241DA30", + "group_size": "2", + "active_group_size": "1", + "group_pids": [ + "JJD0000900618377688720930", + "JVGL40049608000640213614" + ], + "group_parcel_keys": [ + "1197664957", + "1198193422" + ], + "group_sender_names": "", + "lat": "50.9020117305868", + "lng": "5.73157201134678", + "delivery_code": "", + "full_address_for_navigation": "REPENHOF 30, BUNDE", + "calculated_group_size": "1", + "calculated_group_pids": [], + "finished": "true", + "finished_at_timestamp": "1681899451", + "finished_at": "2023-04-19 12:17:31 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:27" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198271147", + "pid": "3SHEM2984037901", + "postal_code_numeric": "6241", + "postal_code_alpha": "DA", + "street": "Repenhof", + "house_number": "12", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9009005163655", + "address_longitude": "5.7310927980023", + "customer_short_name": "HEMA", + "product_type_description": null, + "delivery_sequence_number": "67", + "delivery_moment": "2023-04-19T12:28:51+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHEM2984037901", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241DA12", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9009005163655", + "lng": "5.7310927980023", + "delivery_code": "", + "full_address_for_navigation": "REPENHOF 12, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899510", + "finished_at": "2023-04-19 12:18:30 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:28" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197928304", + "pid": "JVGL05992755000308491170", + "postal_code_numeric": "6241", + "postal_code_alpha": "CS", + "street": "Hofkestraat", + "house_number": "25", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.899779282764", + "address_longitude": "5.72850125049208", + "customer_short_name": "Fulfilment & Logistics -", + "product_type_description": null, + "delivery_sequence_number": "68", + "delivery_moment": "2023-04-19T12:31:20+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "21", + "scanned_in_trip": "true", + "parcel_id": "JVGL05992755000308491170", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CS25", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.899779282764", + "lng": "5.72850125049208", + "delivery_code": "", + "full_address_for_navigation": "HOFKESTRAAT 25, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899715", + "finished_at": "2023-04-19 12:21:55 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:31" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198038518", + "pid": "JVGL40046213001619731768", + "postal_code_numeric": "6241", + "postal_code_alpha": "CS", + "street": "Hofkestraat", + "house_number": "19", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8995818055838", + "address_longitude": "5.7290160637278", + "customer_short_name": "Petgamma", + "product_type_description": "VP", + "delivery_sequence_number": "69", + "delivery_moment": "2023-04-19T12:32:56+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL40046213001619731768", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CS19", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8995818055838", + "lng": "5.7290160637278", + "delivery_code": "", + "full_address_for_navigation": "HOFKESTRAAT 19, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899821", + "finished_at": "2023-04-19 12:23:41 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:32" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1191067595", + "pid": "3SBPB0004064636", + "postal_code_numeric": "6241", + "postal_code_alpha": "HC", + "street": "'t Hofke", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8990984036612", + "address_longitude": "5.72934425421224", + "customer_short_name": "Yunling Electronic Technology", + "product_type_description": null, + "delivery_sequence_number": "70", + "delivery_moment": "2023-04-19T12:34:49+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SBPB0004064636", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241HC1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8990984036612", + "lng": "5.72934425421224", + "delivery_code": "", + "full_address_for_navigation": "'T HOFKE 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899868", + "finished_at": "2023-04-19 12:24:28 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:34" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196677819", + "pid": "CM995163377DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "CS", + "street": "Hofkestraat", + "house_number": "6", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8988877496927", + "address_longitude": "5.72942030597008", + "customer_short_name": "Alex Bizark Germany Logistik C/O De", + "product_type_description": "VP", + "delivery_sequence_number": "71", + "delivery_moment": "2023-04-19T12:36:14+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CM995163377DE", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CS6", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8988877496927", + "lng": "5.72942030597008", + "delivery_code": "", + "full_address_for_navigation": "HOFKESTRAAT 6, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681899948", + "finished_at": "2023-04-19 12:25:48 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:36" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197408517", + "pid": "3SZAL022033975", + "postal_code_numeric": "6241", + "postal_code_alpha": "HC", + "street": "'t Hofke", + "house_number": "17", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.899537681557", + "address_longitude": "5.73025708825312", + "customer_short_name": "ZAL", + "product_type_description": null, + "delivery_sequence_number": "72", + "delivery_moment": "2023-04-19T12:38:01+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SZAL022033975", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241HC17", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.899537681557", + "lng": "5.73025708825312", + "delivery_code": "", + "full_address_for_navigation": "'T HOFKE 17, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900095", + "finished_at": "2023-04-19 12:28:15 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:38" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195115082", + "pid": "3SABCM104851316", + "postal_code_numeric": "6241", + "postal_code_alpha": "CS", + "street": "Hofkestraat", + "house_number": "4", + "house_number_addition": "a", + "city": "BUNDE", + "address_latitude": "50.8987438290067", + "address_longitude": "5.7294822925553", + "customer_short_name": "TDG", + "product_type_description": null, + "delivery_sequence_number": "73", + "delivery_moment": "2023-04-19T12:40:04+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T11:04:49.272762", + "parcelId": "3SABCM104851316", + "interventionId": "018798c2-6478-4e69-a12c-b299b849cbb7", + "agreed_place_description": "Het mag op het muurtje bij de voordeur gelegd. Wel beetje uit het zicht graag.", + "ring_doorbell": true, + "parcelKey": "1195115082", + "acknowledgedAt": "2023-04-19T12:05:36.026" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681900020", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8987438290067", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018798c2-6478-4e69-a12c-b299b849cbb7", + "finished_at": "2023-04-19 12:27:00 +0200", + "lng": "5.7294822925553", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CS4A", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "HOFKESTRAAT 4, BUNDE", + "parcel_id": "3SABCM104851316", + "eta": "12:40" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198174450", + "pid": "3SQLW1149447161", + "postal_code_numeric": "6241", + "postal_code_alpha": "CR", + "street": "Burchtstraat", + "house_number": "22", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8981356991572", + "address_longitude": "5.72955645597224", + "customer_short_name": "MijnDrogist.nl via bol.com", + "product_type_description": null, + "delivery_sequence_number": "74", + "delivery_moment": "2023-04-19T12:41:39+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SQLW1149447161", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CR22", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8981356991572", + "lng": "5.72955645597224", + "delivery_code": "", + "full_address_for_navigation": "BURCHTSTRAAT 22, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900226", + "finished_at": "2023-04-19 12:30:26 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:41" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196164585", + "pid": "3SZAL022004592", + "postal_code_numeric": "6241", + "postal_code_alpha": "CR", + "street": "Burchtstraat", + "house_number": "63", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8994936106515", + "address_longitude": "5.73090152964423", + "customer_short_name": "ZAL", + "product_type_description": null, + "delivery_sequence_number": "75", + "delivery_moment": "2023-04-19T12:43:32+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SZAL022004592", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CR63", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8994936106515", + "lng": "5.73090152964423", + "delivery_code": "", + "full_address_for_navigation": "BURCHTSTRAAT 63, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900322", + "finished_at": "2023-04-19 12:32:02 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:43" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197773043", + "pid": "3SRTU01678132", + "postal_code_numeric": "6241", + "postal_code_alpha": "CT", + "street": "Pasweg", + "house_number": "1", + "house_number_addition": "a", + "city": "Bunde", + "address_latitude": "50.8995472684075", + "address_longitude": "5.73165884967802", + "customer_short_name": "RITUALS", + "product_type_description": null, + "delivery_sequence_number": "76", + "delivery_moment": "2023-04-19T12:45:08+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SRTU01678132", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CT1A", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8995472684075", + "lng": "5.73165884967802", + "delivery_code": "", + "full_address_for_navigation": "PASWEG 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900402", + "finished_at": "2023-04-19 12:33:22 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:45" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197689186", + "pid": "JVGL06066229000957081864", + "postal_code_numeric": "6241", + "postal_code_alpha": "CT", + "street": "Pasweg", + "house_number": "4", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8997957062293", + "address_longitude": "5.73208585738633", + "customer_short_name": "De Paardendrogist - De Paardendrogist", + "product_type_description": null, + "delivery_sequence_number": "77", + "delivery_moment": "2023-04-19T12:46:36+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T07:04:32.270089", + "parcelId": "JVGL06066229000957081864", + "interventionId": "018797e6-680e-46a6-a955-2bca1af2edf3", + "agreed_place_description": "Links van het huis, onder het afdak op de tafel.", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:14.564646", + "parcelKey": "1197689186" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681900484", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8997957062293", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018797e6-680e-46a6-a955-2bca1af2edf3", + "finished_at": "2023-04-19 12:34:44 +0200", + "lng": "5.73208585738633", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CT4", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "PASWEG 4, BUNDE", + "parcel_id": "JVGL06066229000957081864", + "eta": "12:46" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197878092", + "pid": "JVGL06213730000219552243", + "postal_code_numeric": "6241", + "postal_code_alpha": "CT", + "street": "Pasweg", + "house_number": "15", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9009046893261", + "address_longitude": "5.7318048534614", + "customer_short_name": "Mardeals.nl", + "product_type_description": null, + "delivery_sequence_number": "78", + "delivery_moment": "2023-04-19T12:48:12+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL06213730000219552243", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CT15", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9009046893261", + "lng": "5.7318048534614", + "delivery_code": "", + "full_address_for_navigation": "PASWEG 15, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900559", + "finished_at": "2023-04-19 12:35:59 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:48" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197585099", + "pid": "JVGL05707328001810853352", + "postal_code_numeric": "6241", + "postal_code_alpha": "CT", + "street": "Pasweg", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9007490816727", + "address_longitude": "5.73298007281262", + "customer_short_name": "Vivisol Nederland BV -", + "product_type_description": null, + "delivery_sequence_number": "79", + "delivery_moment": "2023-04-19T12:49:59+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL05707328001810853352", + "timeframe": "10:00-15:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "10:00_15:00_6241CT9NBB", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "JVGL05707328001392516182", + "JVGL05707328001810853352" + ], + "group_parcel_keys": [ + "1197584049", + "1197585099" + ], + "group_sender_names": "Vivisol Nederland BV -", + "lat": "50.9007490816727", + "lng": "5.73298007281262", + "delivery_code": "", + "full_address_for_navigation": "PASWEG 9, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900646", + "finished_at": "2023-04-19 12:37:26 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:49" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197584049", + "pid": "JVGL05707328001392516182", + "postal_code_numeric": "6241", + "postal_code_alpha": "CT", + "street": "Pasweg", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.9007490816727", + "address_longitude": "5.73298007281262", + "customer_short_name": "Vivisol Nederland BV -", + "product_type_description": null, + "delivery_sequence_number": "80", + "delivery_moment": "2023-04-19T12:49:59+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JVGL05707328001392516182", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "10:00_15:00_6241CT9NBB", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "JVGL05707328001392516182", + "JVGL05707328001810853352" + ], + "group_parcel_keys": [ + "1197584049", + "1197585099" + ], + "group_sender_names": "Vivisol Nederland BV -", + "lat": "50.9007490816727", + "lng": "5.73298007281262", + "delivery_code": "", + "full_address_for_navigation": "PASWEG 9, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900646", + "finished_at": "2023-04-19 12:37:26 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:49" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197909047", + "pid": "3SDRG9676823247", + "postal_code_numeric": "6241", + "postal_code_alpha": "CV", + "street": "Roggeveldstraat", + "house_number": "7", + "house_number_addition": "-J", + "city": "Bunde", + "address_latitude": "50.8984580177201", + "address_longitude": "5.73241852959837", + "customer_short_name": "Drogist.nl", + "product_type_description": null, + "delivery_sequence_number": "81", + "delivery_moment": "2023-04-19T12:52:33+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SDRG9676823247", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CV7-J", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8984580177201", + "lng": "5.73241852959837", + "delivery_code": "", + "full_address_for_navigation": "ROGGEVELDSTRAAT 7, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681900932", + "finished_at": "2023-04-19 12:42:12 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:52" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197554986", + "pid": "3SHM00006486967", + "postal_code_numeric": "6241", + "postal_code_alpha": "CJ", + "street": "Vliegenstraat", + "house_number": "86", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8980963046262", + "address_longitude": "5.7320454690034", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "82", + "delivery_moment": "2023-04-19T12:53:59+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006486967", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CJ86", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8980963046262", + "lng": "5.7320454690034", + "delivery_code": "", + "full_address_for_navigation": "VLIEGENSTRAAT 86, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681901167", + "finished_at": "2023-04-19 12:46:07 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:53" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198003823", + "pid": "3SBCS21589558", + "postal_code_numeric": "6241", + "postal_code_alpha": "CV", + "street": "Roggeveldstraat", + "house_number": "15", + "house_number_addition": "A", + "city": "BUNDE", + "address_latitude": "50.8981939480712", + "address_longitude": "5.73323811779237", + "customer_short_name": "BOL.COM", + "product_type_description": null, + "delivery_sequence_number": "83", + "delivery_moment": "2023-04-19T12:55:28+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SBCS21589558", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CV15A", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8981939480712", + "lng": "5.73323811779237", + "delivery_code": "", + "full_address_for_navigation": "ROGGEVELDSTRAAT 15, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681901048", + "finished_at": "2023-04-19 12:44:08 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "12:55" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197037519", + "pid": "3SNRA0000155608", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "41", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8966450727366", + "address_longitude": "5.7354892643494", + "customer_short_name": "NORAH B.V.", + "product_type_description": null, + "delivery_sequence_number": "84", + "delivery_moment": "2023-04-19T12:57:14+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T00:25:42.97362", + "parcelId": "3SNRA0000155608", + "interventionId": "01879679-463d-481e-902d-70f5da8f340e", + "agreed_place_description": "Achterom, parkeerplaatsen, door ijzeren hekje, onder aan de trap bij de deur.", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T10:37:14.968276", + "parcelKey": "1197037519" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681901283", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8966450727366", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "01879679-463d-481e-902d-70f5da8f340e", + "finished_at": "2023-04-19 12:48:03 +0200", + "lng": "5.7354892643494", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE41", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "VLIEGENSTRAAT 41, BUNDE", + "parcel_id": "3SNRA0000155608", + "eta": "12:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197650876", + "pid": "3SDFC0202881546", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "31", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8953674370407", + "address_longitude": "5.73595337097282", + "customer_short_name": "Server Express", + "product_type_description": "BP", + "delivery_sequence_number": "85", + "delivery_moment": "2023-04-19T12:58:52+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "intervention_data": { + "type": "to_sp", + "createdate": "2023-04-19T08:36:20.348484", + "parcelId": "3SDFC0202881546", + "interventionId": "0187983a-73fc-4988-a37e-d78614dab7be", + "acknowledgedAt": "2023-04-19T10:37:18.422301", + "parcelKey": "1197650876" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1196699415" + ], + "is_intervention": "true", + "calculated_group_pids": [], + "group_pids": [ + "CD172423995DE" + ], + "lat": "50.8953674370407", + "active_group_size": "2", + "intervention_id": "0187983a-73fc-4988-a37e-d78614dab7be", + "lng": "5.73595337097282", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE31", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_sender_names": "Musikerkabelladen Uwe Ducke OT Horn,BP・Server Express", + "full_address_for_navigation": "VLIEGENSTRAAT 31, BUNDE", + "parcel_id": "3SDFC0202881546", + "eta": "12:58" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196699415", + "pid": "CD172423995DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "31", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8953674370407", + "address_longitude": "5.73595337097282", + "customer_short_name": "Musikerkabelladen Uwe Ducke OT Horn", + "product_type_description": null, + "delivery_sequence_number": "86", + "delivery_moment": "2023-04-19T12:58:52+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "10", + "intervention_data": { + "type": "to_sp", + "createdate": "2023-04-19T13:12:49.037199", + "parcelId": "CD172423995DE", + "parcelKey": "1196699415", + "interventionId": "01879937-938d-4b6a-a032-db91461462b6" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1196699415" + ], + "is_intervention": "true", + "finished_at_timestamp": "1681901391", + "grouped": "false", + "p_number": "639174", + "calculated_group_pids": [], + "group_pids": [ + "CD172423995DE" + ], + "lat": "50.8953674370407", + "active_group_size": "1", + "device_name": "Honeywell CT60", + "intervention_id": "01879937-938d-4b6a-a032-db91461462b6", + "group_first": "true", + "finished_at": "2023-04-19 12:49:51 +0200", + "lng": "5.73595337097282", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE31", + "delivery_code": "", + "intervention_message_confirmed": "false", + "group_task_index": "0", + "group_sender_names": "Musikerkabelladen Uwe Ducke OT Horn,BP・Server Express", + "full_address_for_navigation": "VLIEGENSTRAAT 31, BUNDE", + "parcel_id": "CD172423995DE", + "eta": "12:58" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197452627", + "pid": "JVGL08932899224938561", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "EUROPLUS", + "product_type_description": "PA", + "delivery_sequence_number": "87", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901575", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "false", + "finished_at": "2023-04-19 12:52:55 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "4", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL08932899224938561", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197452621", + "pid": "JVGL08932899224952191", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "EUROPLUS", + "product_type_description": null, + "delivery_sequence_number": "88", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901574", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "false", + "finished_at": "2023-04-19 12:52:54 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "1", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL08932899224952191", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198342406", + "pid": "JVGL08932899224979291", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "EUROPLUS", + "product_type_description": null, + "delivery_sequence_number": "89", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901575", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "false", + "finished_at": "2023-04-19 12:52:55 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "5", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL08932899224979291", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197452625", + "pid": "JVGL08932899224930401", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "EUROPLUS", + "product_type_description": "VP", + "delivery_sequence_number": "90", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901575", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "false", + "finished_at": "2023-04-19 12:52:55 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "2", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL08932899224930401", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195072689", + "pid": "JVGL05927660000041900789", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "Hartje.de -", + "product_type_description": null, + "delivery_sequence_number": "91", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901574", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "true", + "finished_at": "2023-04-19 12:52:54 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "0", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL05927660000041900789", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195660583", + "pid": "3SHM00006384275", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "92", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006384275", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241CE1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8942952978", + "lng": "5.73679990838862", + "delivery_code": "", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681901580", + "finished_at": "2023-04-19 12:53:00 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197452626", + "pid": "JVGL08932899224932211", + "postal_code_numeric": "6241", + "postal_code_alpha": "CE", + "street": "Vliegenstraat", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942952978", + "address_longitude": "5.73679990838862", + "customer_short_name": "EUROPLUS", + "product_type_description": null, + "delivery_sequence_number": "93", + "delivery_moment": "2023-04-19T13:00:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "timeframe": "10:00-15:00", + "group_parcel_keys": [ + "1195072689", + "1197452621", + "1197452625", + "1197452626", + "1197452627", + "1198342406" + ], + "finished_at_timestamp": "1681901575", + "grouped": "true", + "p_number": "639174", + "group_pids": [ + "JVGL05927660000041900789", + "JVGL08932899224952191", + "JVGL08932899224930401", + "JVGL08932899224932211", + "JVGL08932899224938561", + "JVGL08932899224979291" + ], + "lat": "50.8942952978", + "device_name": "Honeywell CT60", + "active_group_size": "6", + "group_first": "false", + "finished_at": "2023-04-19 12:52:55 +0200", + "lng": "5.73679990838862", + "finished": "true", + "group_size": "6", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241CE1NBB", + "delivery_code": "", + "group_task_index": "3", + "group_sender_names": "Hartje.de -, EUROPLUS, VP・EUROPLUS, PA・EUROPLUS", + "full_address_for_navigation": "VLIEGENSTRAAT 1, BUNDE", + "parcel_id": "JVGL08932899224932211", + "eta": "13:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196120234", + "pid": "3SDFC1377883243", + "postal_code_numeric": "6241", + "postal_code_alpha": "BT", + "street": "Papenweg", + "house_number": "105", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.893491367297", + "address_longitude": "5.73592572575639", + "customer_short_name": "M I Agha", + "product_type_description": null, + "delivery_sequence_number": "94", + "delivery_moment": "2023-04-19T13:03:26+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SDFC1377883243", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241BT105", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.893491367297", + "lng": "5.73592572575639", + "delivery_code": "", + "full_address_for_navigation": "PAPENWEG 105, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904077", + "finished_at": "2023-04-19 13:34:37 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "13:03" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198026355", + "pid": "3SRTU01679095", + "postal_code_numeric": "6241", + "postal_code_alpha": "BS", + "street": "Papenweg", + "house_number": "79", + "house_number_addition": "79", + "city": "BUNDE", + "address_latitude": "50.8942707080229", + "address_longitude": "5.73412997766517", + "customer_short_name": "RITUALS", + "product_type_description": null, + "delivery_sequence_number": "95", + "delivery_moment": "2023-04-19T13:05:14+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T12:40:59.761463", + "parcelId": "3SRTU01679095", + "interventionId": "0187991a-7171-4310-a1f8-6748ab8878f2", + "agreed_place_description": "Achterom onder de overkapping", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T12:58:32.392695", + "parcelKey": "1198026355" + }, + "timeframe": "10:00-15:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681904190", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8942707080229", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "0187991a-7171-4310-a1f8-6748ab8878f2", + "finished_at": "2023-04-19 13:36:30 +0200", + "lng": "5.73412997766517", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "10:00_15:00_6241BS7979", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "PAPENWEG 79, BUNDE", + "parcel_id": "3SRTU01679095", + "eta": "13:05" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196905683", + "pid": "CD129685485BE", + "postal_code_numeric": "6241", + "postal_code_alpha": "BH", + "street": "Wilgenlaan", + "house_number": "1", + "house_number_addition": "KAMER 1", + "city": "BUNDE", + "address_latitude": "50.8942472", + "address_longitude": "5.7329108", + "customer_short_name": "UBE", + "product_type_description": null, + "delivery_sequence_number": "96", + "delivery_moment": "2023-04-19T14:00:00+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "CD129685485BE", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241BH1KAMER1", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8942472", + "lng": "5.7329108", + "delivery_code": "", + "full_address_for_navigation": "WILGENLAAN 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904242", + "finished_at": "2023-04-19 13:37:22 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198342436", + "pid": "00387132110038672466", + "postal_code_numeric": "6241", + "postal_code_alpha": "BH", + "street": "Wilgenlaan", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942871713178", + "address_longitude": "5.73283445584933", + "customer_short_name": "EUROPLUS", + "product_type_description": null, + "delivery_sequence_number": "97", + "delivery_moment": "2023-04-19T14:01:25+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "00387132110038672466", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "14:00_18:00_6241BH1NBB", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "00387132110038672466", + "00340433952809021223" + ], + "group_parcel_keys": [ + "1198342436", + "1198342505" + ], + "group_sender_names": "EUROPLUS, PA・EUROPLUS", + "lat": "50.8942871713178", + "lng": "5.73283445584933", + "delivery_code": "", + "full_address_for_navigation": "WILGENLAAN 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904257", + "finished_at": "2023-04-19 13:37:37 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:01" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198342505", + "pid": "00340433952809021223", + "postal_code_numeric": "6241", + "postal_code_alpha": "BH", + "street": "Wilgenlaan", + "house_number": "1", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8942871713178", + "address_longitude": "5.73283445584933", + "customer_short_name": "EUROPLUS", + "product_type_description": "PA", + "delivery_sequence_number": "98", + "delivery_moment": "2023-04-19T14:01:25+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "00340433952809021223", + "timeframe": "14:00-18:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "14:00_18:00_6241BH1NBB", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "00387132110038672466", + "00340433952809021223" + ], + "group_parcel_keys": [ + "1198342436", + "1198342505" + ], + "group_sender_names": "EUROPLUS, PA・EUROPLUS", + "lat": "50.8942871713178", + "lng": "5.73283445584933", + "delivery_code": "", + "full_address_for_navigation": "WILGENLAAN 1, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904257", + "finished_at": "2023-04-19 13:37:37 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:01" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198061121", + "pid": "JJD0612777300000001187622", + "postal_code_numeric": "6241", + "postal_code_alpha": "BG", + "street": "Eikenlaan", + "house_number": "7", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8937299150124", + "address_longitude": "5.73386810368481", + "customer_short_name": "Otrium", + "product_type_description": null, + "delivery_sequence_number": "99", + "delivery_moment": "2023-04-19T14:03:44+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T11:19:34.146182", + "parcelId": "JJD0612777300000001187622", + "interventionId": "018798cf-e502-4fca-b3fc-c521a7ab7357", + "agreed_place_description": "Voor de zijdeur (naast garage) niet de voordeur. Bedankt!", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T12:05:35.950112", + "parcelKey": "1198061121" + }, + "timeframe": "14:00-18:00", + "group_parcel_keys": [], + "finished_at_timestamp": "1681904471", + "is_intervention": "true", + "grouped": "false", + "p_number": "639174", + "group_pids": [], + "lat": "50.8937299150124", + "device_name": "Honeywell CT60", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018798cf-e502-4fca-b3fc-c521a7ab7357", + "finished_at": "2023-04-19 13:41:11 +0200", + "lng": "5.73386810368481", + "finished": "true", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "14:00_18:00_6241BG7", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "EIKENLAAN 7, BUNDE", + "parcel_id": "JJD0612777300000001187622", + "eta": "14:03" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197532569", + "pid": "3SHM00006466426", + "postal_code_numeric": "6241", + "postal_code_alpha": "AZ", + "street": "Berkenlaan", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8932108145867", + "address_longitude": "5.73386620350957", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "100", + "delivery_moment": "2023-04-19T14:05:25+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006466426", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AZ3", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8932108145867", + "lng": "5.73386620350957", + "delivery_code": "", + "full_address_for_navigation": "BERKENLAAN 3, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904561", + "finished_at": "2023-04-19 13:42:41 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:05" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197830170", + "pid": "3SLRD0000114808", + "postal_code_numeric": "6241", + "postal_code_alpha": "BB", + "street": "Lindenlaan", + "house_number": "47", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.892970302651", + "address_longitude": "5.73292538359553", + "customer_short_name": "LIDL", + "product_type_description": null, + "delivery_sequence_number": "101", + "delivery_moment": "2023-04-19T14:07:13+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SLRD0000114808", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241BB47", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.892970302651", + "lng": "5.73292538359553", + "delivery_code": "", + "full_address_for_navigation": "LINDENLAAN 47, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904689", + "finished_at": "2023-04-19 13:44:49 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:07" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196071974", + "pid": "JJD149990200049406532", + "postal_code_numeric": "6241", + "postal_code_alpha": "BD", + "street": "Lindenlaan", + "house_number": "76", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8935370706237", + "address_longitude": "5.73083723445973", + "customer_short_name": "babymarkt.de GmbH", + "product_type_description": null, + "delivery_sequence_number": "102", + "delivery_moment": "2023-04-19T14:09:02+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JJD149990200049406532", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241BD76", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8935370706237", + "lng": "5.73083723445973", + "delivery_code": "", + "full_address_for_navigation": "LINDENLAAN 76, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904806", + "finished_at": "2023-04-19 13:46:46 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:09" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198311286", + "pid": "JUN491599949120196030759", + "postal_code_numeric": "6241", + "postal_code_alpha": "AM", + "street": "Beukenlaan", + "house_number": "92", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8935894241946", + "address_longitude": "5.72863906790899", + "customer_short_name": "WEHKAMP", + "product_type_description": "PA", + "delivery_sequence_number": "103", + "delivery_moment": "2023-04-19T14:11:04+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JUN491599949120196030759", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AM92", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8935894241946", + "lng": "5.72863906790899", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 92, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681904914", + "finished_at": "2023-04-19 13:48:34 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:11" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197782336", + "pid": "3SHM00006494212", + "postal_code_numeric": "6241", + "postal_code_alpha": "JB", + "street": "Maastrichterlaan", + "house_number": "72", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8945253768953", + "address_longitude": "5.727560249529", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "104", + "delivery_moment": "2023-04-19T14:12:47+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "21", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006494212", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241JB72", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8945253768953", + "lng": "5.727560249529", + "delivery_code": "", + "full_address_for_navigation": "MAASTRICHTERLAAN 72, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905089", + "finished_at": "2023-04-19 13:51:29 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:12" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197893016", + "pid": "3SHM00006496177", + "postal_code_numeric": "6241", + "postal_code_alpha": "AG", + "street": "Iepenlaan", + "house_number": "78", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8930839833296", + "address_longitude": "5.72769319097755", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "105", + "delivery_moment": "2023-04-19T14:14:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006496177", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AG78", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8930839833296", + "lng": "5.72769319097755", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 78, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905186", + "finished_at": "2023-04-19 13:53:06 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:14" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198186288", + "pid": "3SSUP0052847875", + "postal_code_numeric": "6241", + "postal_code_alpha": "AG", + "street": "Iepenlaan", + "house_number": "76", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8929885681816", + "address_longitude": "5.72801312199468", + "customer_short_name": "Deloox", + "product_type_description": null, + "delivery_sequence_number": "106", + "delivery_moment": "2023-04-19T14:16:05+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SSUP0052847875", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AG76", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8929885681816", + "lng": "5.72801312199468", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 76, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905271", + "finished_at": "2023-04-19 13:54:31 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:16" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197431141", + "pid": "3SDGB111609956", + "postal_code_numeric": "6241", + "postal_code_alpha": "AD", + "street": "Iepenlaan", + "house_number": "87", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8926124362322", + "address_longitude": "5.73018498326202", + "customer_short_name": "DOUGLAS", + "product_type_description": null, + "delivery_sequence_number": "107", + "delivery_moment": "2023-04-19T14:17:57+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "intervention_data": { + "type": "to_later", + "createdate": "2023-04-19T07:22:35.545311", + "parcelId": "3SDGB111609956", + "interventionId": "018797f6-ef99-464a-81cb-93e26bb5b9bd", + "acknowledgedAt": "2023-04-19T10:37:17.730739", + "parcelKey": "1197431141" + }, + "timeframe": "14:00-18:00", + "group_parcel_keys": [], + "is_intervention": "true", + "grouped": "false", + "group_pids": [], + "lat": "50.8926124362322", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "018797f6-ef99-464a-81cb-93e26bb5b9bd", + "lng": "5.73018498326202", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "14:00_18:00_6241AD87", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "IEPENLAAN 87, BUNDE", + "parcel_id": "3SDGB111609956", + "eta": "14:17" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1194884652", + "pid": "3SLDL0012543443", + "postal_code_numeric": "6241", + "postal_code_alpha": "AG", + "street": "Iepenlaan", + "house_number": "60", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8923295514474", + "address_longitude": "5.72997467628625", + "customer_short_name": "LIDL", + "product_type_description": "V+", + "delivery_sequence_number": "108", + "delivery_moment": "2023-04-19T14:19:22+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SLDL0012543443", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AG60NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8923295514474", + "lng": "5.72997467628625", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 60, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905445", + "finished_at": "2023-04-19 13:57:25 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:19" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197598408", + "pid": "3SLRD0000112469", + "postal_code_numeric": "6241", + "postal_code_alpha": "BH", + "street": "Wilgenlaan", + "house_number": "41", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.892376332037", + "address_longitude": "5.73108201753862", + "customer_short_name": "LIDL", + "product_type_description": null, + "delivery_sequence_number": "109", + "delivery_moment": "2023-04-19T14:21:04+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SLRD0000112469", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241BH41", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.892376332037", + "lng": "5.73108201753862", + "delivery_code": "", + "full_address_for_navigation": "WILGENLAAN 41, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905500", + "finished_at": "2023-04-19 13:58:20 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:21" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197078418", + "pid": "3SRM1561624", + "postal_code_numeric": "6241", + "postal_code_alpha": "AG", + "street": "Iepenlaan", + "house_number": "50", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8917287049164", + "address_longitude": "5.73137764711177", + "customer_short_name": "ROYAL MAIL NETHERLANDS", + "product_type_description": null, + "delivery_sequence_number": "110", + "delivery_moment": "2023-04-19T14:22:40+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SRM1561624", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AG50", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8917287049164", + "lng": "5.73137764711177", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 50, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905606", + "finished_at": "2023-04-19 14:00:06 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:22" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197944423", + "pid": "JUN491599949120195962622", + "postal_code_numeric": "6241", + "postal_code_alpha": "AD", + "street": "Iepenlaan", + "house_number": "53", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8915446702097", + "address_longitude": "5.73265493411435", + "customer_short_name": "WEHKAMP", + "product_type_description": null, + "delivery_sequence_number": "111", + "delivery_moment": "2023-04-19T14:24:18+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JUN491599949120195962622", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AD53", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8915446702097", + "lng": "5.73265493411435", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 53, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905754", + "finished_at": "2023-04-19 14:02:34 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:24" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197691987", + "pid": "JUN491599949120195932887", + "postal_code_numeric": "6241", + "postal_code_alpha": "AE", + "street": "Iepenlaan", + "house_number": "36", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8909731358184", + "address_longitude": "5.73305371465451", + "customer_short_name": "WEHKAMP", + "product_type_description": null, + "delivery_sequence_number": "112", + "delivery_moment": "2023-04-19T14:25:52+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "JUN491599949120195932887", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AE36", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8909731358184", + "lng": "5.73305371465451", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 36, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905808", + "finished_at": "2023-04-19 14:03:28 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:25" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196776181", + "pid": "3SDFC0172091748", + "postal_code_numeric": "6241", + "postal_code_alpha": "AW", + "street": "Kastanjelaan", + "house_number": "32", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8918555799749", + "address_longitude": "5.73428099085724", + "customer_short_name": "Vivi Oggi", + "product_type_description": null, + "delivery_sequence_number": "113", + "delivery_moment": "2023-04-19T14:27:38+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "22", + "scanned_in_trip": "true", + "parcel_id": "3SDFC0172091748", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AW32", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8918555799749", + "lng": "5.73428099085724", + "delivery_code": "", + "full_address_for_navigation": "KASTANJELAAN 32, BUNDE", + "finished": "true", + "finished_at_timestamp": "1681905925", + "finished_at": "2023-04-19 14:05:25 +0200", + "p_number": "639174", + "device_name": "Honeywell CT60", + "eta": "14:27" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1194926154", + "pid": "3SZLE001223351", + "postal_code_numeric": "6241", + "postal_code_alpha": "AJ", + "street": "Beukenlaan", + "house_number": "45", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8922110526903", + "address_longitude": "5.73291260358523", + "customer_short_name": "ZAL", + "product_type_description": null, + "delivery_sequence_number": "114", + "delivery_moment": "2023-04-19T14:29:21+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SZLE001223351", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AJ45", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8922110526903", + "lng": "5.73291260358523", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 45, BUNDE", + "eta": "14:29" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197409953", + "pid": "3SBHP007564040", + "postal_code_numeric": "6241", + "postal_code_alpha": "AJ", + "street": "Beukenlaan", + "house_number": "47", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.892246521401", + "address_longitude": "5.73283484341639", + "customer_short_name": "Bax Music", + "product_type_description": null, + "delivery_sequence_number": "115", + "delivery_moment": "2023-04-19T14:30:46+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SBHP007564040", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AJ47", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.892246521401", + "lng": "5.73283484341639", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 47, BUNDE", + "eta": "14:30" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197951456", + "pid": "JUN491599949120195971796", + "postal_code_numeric": "6241", + "postal_code_alpha": "AH", + "street": "Beukenlaan", + "house_number": "25", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8913172994768", + "address_longitude": "5.73491876469686", + "customer_short_name": "WEHKAMP", + "product_type_description": null, + "delivery_sequence_number": "116", + "delivery_moment": "2023-04-19T14:32:39+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "JUN491599949120195971796", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AH25", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8913172994768", + "lng": "5.73491876469686", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 25, BUNDE", + "eta": "14:32" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197633469", + "pid": "JVGL06048466000542219931", + "postal_code_numeric": "6241", + "postal_code_alpha": "AH", + "street": "Beukenlaan", + "house_number": "7", + "house_number_addition": "a - Beu", + "city": "BUNDE", + "address_latitude": "50.8918104", + "address_longitude": "5.7362498", + "customer_short_name": "By Hilke -", + "product_type_description": null, + "delivery_sequence_number": "117", + "delivery_moment": "2023-04-19T14:34:24+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "JVGL06048466000542219931", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AH7A-BEU", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8918104", + "lng": "5.7362498", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 7, BUNDE", + "eta": "14:34" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197056401", + "pid": "CI363164542DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "AL", + "street": "Beukenlaan", + "house_number": "12", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8916242002507", + "address_longitude": "5.73658189200913", + "customer_short_name": "ZALANDO VIA GMO Gute Marken Online", + "product_type_description": null, + "delivery_sequence_number": "118", + "delivery_moment": "2023-04-19T14:35:50+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "CI363164542DE", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AL12", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8916242002507", + "lng": "5.73658189200913", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 12, BUNDE", + "eta": "14:35" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198112205", + "pid": "3SBCS21594060", + "postal_code_numeric": "6241", + "postal_code_alpha": "AL", + "street": "Beukenlaan", + "house_number": "22", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8913560985749", + "address_longitude": "5.73597443733075", + "customer_short_name": "BOL.COM", + "product_type_description": null, + "delivery_sequence_number": "119", + "delivery_moment": "2023-04-19T14:37:24+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SBCS21594060", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AL22", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8913560985749", + "lng": "5.73597443733075", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 22, BUNDE", + "eta": "14:37" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198179627", + "pid": "00008865511310147057", + "postal_code_numeric": "6241", + "postal_code_alpha": "AL", + "street": "Beukenlaan", + "house_number": "24", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8913210764952", + "address_longitude": "5.73590339774261", + "customer_short_name": "Nike", + "product_type_description": null, + "delivery_sequence_number": "120", + "delivery_moment": "2023-04-19T14:38:49+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "00008865511310147057", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AL24", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8913210764952", + "lng": "5.73590339774261", + "delivery_code": "", + "full_address_for_navigation": "BEUKENLAAN 24, BUNDE", + "eta": "14:38" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197899952", + "pid": "3SMPK14044727", + "postal_code_numeric": "6241", + "postal_code_alpha": "AN", + "street": "Lijsterbeslaan", + "house_number": "18", + "house_number_addition": null, + "city": "Bunde", + "address_latitude": "50.8904074314196", + "address_longitude": "5.73626701013482", + "customer_short_name": "iBOOD", + "product_type_description": null, + "delivery_sequence_number": "121", + "delivery_moment": "2023-04-19T14:40:44+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SMPK14044727", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AN18", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8904074314196", + "lng": "5.73626701013482", + "delivery_code": "", + "full_address_for_navigation": "LIJSTERBESLAAN 18, BUNDE", + "eta": "14:40" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196435591", + "pid": "JVGL06240303001107312682", + "postal_code_numeric": "6241", + "postal_code_alpha": "AP", + "street": "Appellaan", + "house_number": "9", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8913132055957", + "address_longitude": "5.73678362716965", + "customer_short_name": "VSPV - jentina Bonthuis", + "product_type_description": null, + "delivery_sequence_number": "122", + "delivery_moment": "2023-04-19T14:42:30+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "JVGL06240303001107312682", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AP9", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8913132055957", + "lng": "5.73678362716965", + "delivery_code": "", + "full_address_for_navigation": "APPELLAAN 9, BUNDE", + "eta": "14:42" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198001114", + "pid": "3SMPK14046364", + "postal_code_numeric": "6241", + "postal_code_alpha": "AC", + "street": "Iepenlaan", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8899066104002", + "address_longitude": "5.73681989710859", + "customer_short_name": "Holysmile", + "product_type_description": "BP", + "delivery_sequence_number": "123", + "delivery_moment": "2023-04-19T14:44:42+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SMPK14046364", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AC13", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8899066104002", + "lng": "5.73681989710859", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 13, BUNDE", + "eta": "14:44" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197730222", + "pid": "JVGL06129910001922177293", + "postal_code_numeric": "6241", + "postal_code_alpha": "AC", + "street": "Iepenlaan", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.89009668762", + "address_longitude": "5.73754498743212", + "customer_short_name": "Hippe-Geboortekaartjes -", + "product_type_description": null, + "delivery_sequence_number": "124", + "delivery_moment": "2023-04-19T14:46:15+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "JVGL06129910001922177293", + "timeframe": "14:00-18:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "14:00_18:00_6241AC3", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "CR259146828DE", + "JVGL06129910001922177293" + ], + "group_parcel_keys": [ + "1197646520", + "1197730222" + ], + "group_sender_names": "DEUTSCHE, Hippe-Geboortekaartjes -", + "lat": "50.89009668762", + "lng": "5.73754498743212", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 3, BUNDE", + "eta": "14:46" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197675595", + "pid": "JVGL06244768000622970902", + "postal_code_numeric": "6241", + "postal_code_alpha": "AC", + "street": "Iepenlaan", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.89009668762", + "address_longitude": "5.73754498743212", + "customer_short_name": "Medipoint DC Helmond -", + "product_type_description": null, + "delivery_sequence_number": "125", + "delivery_moment": "2023-04-19T14:46:15+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "NBB Handt ", + "indication_not_at_neighbours": true, + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "JVGL06244768000622970902", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AC3NBB", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.89009668762", + "lng": "5.73754498743212", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 3, BUNDE", + "eta": "14:46" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197646520", + "pid": "CR259146828DE", + "postal_code_numeric": "6241", + "postal_code_alpha": "AC", + "street": "Iepenlaan", + "house_number": "3", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.89009668762", + "address_longitude": "5.73754498743212", + "customer_short_name": "DEUTSCHE", + "product_type_description": null, + "delivery_sequence_number": "126", + "delivery_moment": "2023-04-19T14:46:15+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": "Handt ", + "indication_signature_required": true, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "CR259146828DE", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "14:00_18:00_6241AC3", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "CR259146828DE", + "JVGL06129910001922177293" + ], + "group_parcel_keys": [ + "1197646520", + "1197730222" + ], + "group_sender_names": "DEUTSCHE, Hippe-Geboortekaartjes -", + "lat": "50.89009668762", + "lng": "5.73754498743212", + "delivery_code": "", + "full_address_for_navigation": "IEPENLAAN 3, BUNDE", + "eta": "14:46" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1195976786", + "pid": "3SHM00006394303", + "postal_code_numeric": "6241", + "postal_code_alpha": "AS", + "street": "Hemelboomlaan", + "house_number": "1", + "house_number_addition": "a", + "city": "BUNDE", + "address_latitude": "50.8902283750865", + "address_longitude": "5.73804879198407", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "127", + "delivery_moment": "2023-04-19T14:48:06+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006394303", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AS1A", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8902283750865", + "lng": "5.73804879198407", + "delivery_code": "", + "full_address_for_navigation": "HEMELBOOMLAAN 1, BUNDE", + "eta": "14:48" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197921955", + "pid": "JVGL06187561000297666309", + "postal_code_numeric": "6241", + "postal_code_alpha": "AS", + "street": "Hemelboomlaan", + "house_number": "6", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8912747870215", + "address_longitude": "5.73771620913619", + "customer_short_name": "VZB -", + "product_type_description": null, + "delivery_sequence_number": "128", + "delivery_moment": "2023-04-19T14:49:55+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "intervention_data": { + "type": "agreed_place", + "createdate": "2023-04-19T12:53:31.815849", + "parcelId": "JVGL06187561000297666309", + "interventionId": "01879925-eb27-430b-a7ce-1a8f70b509e3", + "agreed_place_description": "Bij geen gehoor graag achteronder de auto", + "ring_doorbell": true, + "acknowledgedAt": "2023-04-19T12:58:32.368365", + "parcelKey": "1197921955" + }, + "timeframe": "14:00-18:00", + "group_parcel_keys": [], + "is_intervention": "true", + "grouped": "false", + "group_pids": [], + "lat": "50.8912747870215", + "active_group_size": "1", + "group_first": "true", + "intervention_id": "01879925-eb27-430b-a7ce-1a8f70b509e3", + "lng": "5.73771620913619", + "group_size": "1", + "scanned_in_trip": "true", + "group_id": "14:00_18:00_6241AS6", + "delivery_code": "", + "intervention_message_confirmed": "true", + "group_task_index": "0", + "group_sender_names": "", + "full_address_for_navigation": "HEMELBOOMLAAN 6, BUNDE", + "parcel_id": "JVGL06187561000297666309", + "eta": "14:49" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197535425", + "pid": "3SHM00006475456", + "postal_code_numeric": "6241", + "postal_code_alpha": "AW", + "street": "Kastanjelaan", + "house_number": "10", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8931983738834", + "address_longitude": "5.73617962708974", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "129", + "delivery_moment": "2023-04-19T14:52:15+02:00", + "begin_delivery_pickup_window": "2023-04-19T14:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006475456", + "timeframe": "14:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "14:00_18:00_6241AW10", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8931983738834", + "lng": "5.73617962708974", + "delivery_code": "", + "full_address_for_navigation": "KASTANJELAAN 10, BUNDE", + "eta": "14:52" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1196450350", + "pid": "3SHM00006438950", + "postal_code_numeric": "6241", + "postal_code_alpha": "GD", + "street": "Prinses Ireneweg", + "house_number": "13", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8931584224358", + "address_longitude": "5.73895261601936", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "130", + "delivery_moment": "2023-04-19T14:54:13+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006438950", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GD13", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.8931584224358", + "lng": "5.73895261601936", + "delivery_code": "", + "full_address_for_navigation": "PRINSES IRENEWEG 13, BUNDE", + "eta": "14:54" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197031364", + "pid": "3SHM00006455225", + "postal_code_numeric": "6241", + "postal_code_alpha": "GD", + "street": "Prinses Ireneweg", + "house_number": "11", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.89312464665", + "address_longitude": "5.73903393905572", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "131", + "delivery_moment": "2023-04-19T14:55:38+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006455225", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "10:00_15:00_6241GD11", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.89312464665", + "lng": "5.73903393905572", + "delivery_code": "", + "full_address_for_navigation": "PRINSES IRENEWEG 11, BUNDE", + "eta": "14:55" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198033960", + "pid": "3SHM00006499175", + "postal_code_numeric": "6241", + "postal_code_alpha": "GE", + "street": "Prinses Ireneweg", + "house_number": "2", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8909587591944", + "address_longitude": "5.74095695951266", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "132", + "delivery_moment": "2023-04-19T14:57:36+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006499175", + "timeframe": "10:00-15:00", + "group_first": "false", + "group_task_index": "1", + "grouped": "true", + "group_id": "10:00_15:00_6241GE2", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SHM00006452714", + "3SHM00006499175" + ], + "group_parcel_keys": [ + "1197032745", + "1198033960" + ], + "group_sender_names": "H&M", + "lat": "50.8909587591944", + "lng": "5.74095695951266", + "delivery_code": "", + "full_address_for_navigation": "PRINSES IRENEWEG 2, BUNDE", + "eta": "14:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1197032745", + "pid": "3SHM00006452714", + "postal_code_numeric": "6241", + "postal_code_alpha": "GE", + "street": "Prinses Ireneweg", + "house_number": "2", + "house_number_addition": null, + "city": "BUNDE", + "address_latitude": "50.8909587591944", + "address_longitude": "5.74095695951266", + "customer_short_name": "H&M", + "product_type_description": null, + "delivery_sequence_number": "133", + "delivery_moment": "2023-04-19T14:57:36+02:00", + "begin_delivery_pickup_window": "2023-04-19T10:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T15:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "1", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "31", + "scanned_in_trip": "true", + "parcel_id": "3SHM00006452714", + "timeframe": "10:00-15:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "true", + "group_id": "10:00_15:00_6241GE2", + "group_size": "2", + "active_group_size": "2", + "group_pids": [ + "3SHM00006452714", + "3SHM00006499175" + ], + "group_parcel_keys": [ + "1197032745", + "1198033960" + ], + "group_sender_names": "H&M", + "lat": "50.8909587591944", + "lng": "5.74095695951266", + "delivery_code": "", + "full_address_for_navigation": "PRINSES IRENEWEG 2, BUNDE", + "eta": "14:57" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198352396", + "pid": "3SAFHMAA3921535232", + "postal_code_numeric": "6199", + "postal_code_alpha": "AA", + "street": "Australielaan", + "house_number": "30", + "house_number_addition": null, + "city": "MAASTRICHT AIRPORT", + "address_latitude": "50.9236482966063", + "address_longitude": "5.77639269186592", + "customer_short_name": "KERAM MOTORRAD", + "product_type_description": null, + "delivery_sequence_number": "134", + "delivery_moment": "2023-04-19T15:04:44+02:00", + "begin_delivery_pickup_window": "1970-01-01T15:00:00+01:00", + "end_delivery_pickup_window": "1970-01-01T17:00:00+01:00", + "delivery_instruction": "VVA ", + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "0", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "4", + "scanned_in_trip": "true", + "parcel_id": "3SAFHMAA3921535232", + "timeframe": "15:00-17:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "P_15:00_17:00_6199AA30", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9236482966063", + "lng": "5.77639269186592", + "delivery_code": "", + "full_address_for_navigation": "AUSTRALIELAAN 30, MAASTRICHT-AIRPORT", + "eta": "15:04" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198352397", + "pid": "3SAFHMAA3921571232", + "postal_code_numeric": "6199", + "postal_code_alpha": "AE", + "street": "Amerikalaan", + "house_number": "11", + "house_number_addition": null, + "city": "MAASTRICHT AIRPORT", + "address_latitude": "50.9250512736482", + "address_longitude": "5.78207239817298", + "customer_short_name": "VENNE MANUFACTURING BV", + "product_type_description": null, + "delivery_sequence_number": "135", + "delivery_moment": "2023-04-19T16:00:31+02:00", + "begin_delivery_pickup_window": "1970-01-01T16:00:00+01:00", + "end_delivery_pickup_window": "1970-01-01T17:00:00+01:00", + "delivery_instruction": "VVA ", + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "0", + "servicepoint_parcel": false, + "servicepointid": "0", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "4", + "scanned_in_trip": "true", + "parcel_id": "3SAFHMAA3921571232", + "timeframe": "16:00-17:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "P_16:00_17:00_6199AE11", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9250512736482", + "lng": "5.78207239817298", + "delivery_code": "", + "full_address_for_navigation": "AMERIKALAAN 11, MAASTRICHT-AIRPORT", + "eta": "16:00" + }, + { + "timeframe_key": "15994", + "trip_key": "20315994", + "parcel_key": "1198388434", + "pid": "3SAFH230211860", + "postal_code_numeric": "6199", + "postal_code_alpha": "AC", + "street": "Horsterweg", + "house_number": "26", + "house_number_addition": null, + "city": "Maastricht", + "address_latitude": "50.9189632780716", + "address_longitude": "5.78616296751423", + "customer_short_name": "DHL PARCELSHOP NL-619902", + "product_type_description": null, + "delivery_sequence_number": "136", + "delivery_moment": "2023-04-19T16:03:36+02:00", + "begin_delivery_pickup_window": "2023-04-19T16:00:00+02:00", + "end_delivery_pickup_window": "2023-04-19T18:00:00+02:00", + "delivery_instruction": null, + "parcel_delivery_remark": null, + "courier_remark": null, + "service_type": "0", + "servicepoint_parcel": true, + "servicepointid": "27655", + "next_timeframe_descr_abbrevation": null, + "parcel_status_key": "4", + "scanned_in_trip": "true", + "parcel_id": "3SAFH230211860", + "timeframe": "16:00-18:00", + "group_first": "true", + "group_task_index": "0", + "grouped": "false", + "group_id": "P_16:00_18:00_6199AC26SP", + "group_size": "1", + "active_group_size": "1", + "group_pids": [], + "group_parcel_keys": [], + "group_sender_names": "", + "lat": "50.9189632780716", + "lng": "5.78616296751423", + "delivery_code": "", + "full_address_for_navigation": "HORSTERWEG 26, MAASTRICHT-AIRPORT", + "eta": "16:03" + } + ], + "start_km": "5273", + "device_start_lng": "5.7862917", + "enriched_from": "redis", + "all_parcel_keys": "1196753602,1197722688,1197725182,1197055220,1193758639,1198346496,1198295590,1197999975,1198342512,1195930620,1197553852,1197782155,1197048568,1197759625,1195058471,1194745100,1197682012,1197759300,1196024163,1197713434,1198018529,1197871411,1197568010,1198332121,1197993651,1197820001,1198165242,1195702639,1197263351,1198057514,1197769682,1197978824,1197583523,1197079451,1197845021,1197408518,1197761782,1198169875,1196515158,1194279938,1197276369,1196852497,1198215284,1198229650,1197747920,1197880189,1196574520,1197413921,1196943932,1197744075,1197025208,1194038580,1197095201,1198047622,1197616575,1196834533,1197006177,1197694291,1197685560,1196679189,1197652218,1197194881,1197664957,1198193422,1198271147,1197928304,1198038518,1191067595,1196677819,1197408517,1195115082,1198174450,1196164585,1197773043,1197689186,1197878092,1197585099,1197584049,1197909047,1197554986,1198003823,1197037519,1197650876,1196699415,1197452627,1197452621,1198342406,1197452625,1195072689,1195660583,1197452626,1196120234,1198026355,1196905683,1198342436,1198342505,1198061121,1197532569,1197830170,1196071974,1198311286,1197782336,1197893016,1198186288,1197431141,1194884652,1197598408,1197078418,1197944423,1197691987,1196776181,1194926154,1197409953,1197951456,1197633469,1197056401,1198112205,1198179627,1197899952,1196435591,1198001114,1197730222,1197675595,1197646520,1195976786,1197921955,1197535425,1196450350,1197031364,1198033960,1197032745,1198352396,1198352397,1198388434", + "eta_first_stop": "10:43:04", + "trip_start_request_sent": "true", + "device_start_lat": "50.9183815", + "last_trip_start_received_at": "1681893430", + "unique_stops": "116", + "tasks_size": "134", + "started": "true", + "all_tasks_finished": "false", + "first_stop_lat": "50.8919767278786", + "eta_calculation_success": "true", + "first_stop_lng": "5.74122752631296", + "tasks_enriched": "true" + } } ''')).route!; } diff --git a/lib/services/storegear_api_service.dart b/lib/services/storegear_api_service.dart index 7b3657f..3063b26 100644 --- a/lib/services/storegear_api_service.dart +++ b/lib/services/storegear_api_service.dart @@ -9,6 +9,7 @@ import 'package:training_planner/route.dart'; import 'package:training_planner/services/istoregear_api_service.dart'; import 'package:training_planner/route.dart' as DHLRoute; import 'package:training_planner/services/mock_route_provider_service.dart'; +import 'package:uuid/uuid.dart'; class StoregearApiService extends IStoregearApiService { String apiKey = ''; @@ -21,6 +22,7 @@ class StoregearApiService extends IStoregearApiService { final response = await http.post( Uri.parse('http://dhlapis.com/delivery/v1/users/login?env_type=PROD'), + headers: {'X-REQ-UUID': Uuid().v1()}, body: jsonEncode(req)); if (response.statusCode == 200) { @@ -30,6 +32,7 @@ class StoregearApiService extends IStoregearApiService { apiKey = res.apiKey!; return res; } else { + print(response.body); // If the server did not return a 200 OK response, // then throw an exception. throw Exception('Failed login'); @@ -38,7 +41,7 @@ class StoregearApiService extends IStoregearApiService { _getMockRouteList() { return RouteList.fromJson(jsonDecode(''' -{ "routes": [ { "timeframe_key": "62395", "trip_key": "19762395", "trip_number": "1", "trip_pda_status": "5", "trip_pda_status_description": "Rit overgedragen", "trip_sequence_number": "1", "number_in_trip": "2", "plate": "VTG-69-R", "damage_registration": true, "eva": "09:04", "trip_date": "6/2/2023", "first_address_lat": "50.9182446706206", "first_address_lng": "5.79150644329668", "started": "true", "all_tasks_finished": "true", "start_km": "458", "end_km": "511", "tasks_enriched": "true", "in_trip_scan_finished": "true", "eva_added": "true", "trip_start_request_sent": "true" }, { "timeframe_key": "62410", "trip_key": "19762410", "trip_number": "10", "trip_pda_status": "5", "trip_pda_status_description": "Rit overgedragen", "trip_sequence_number": "1", "number_in_trip": "120", "plate": "VTG-69-R", "damage_registration": true, "eva": "11:04", "trip_date": "6/2/2023", "first_address_lat": "50.8987460739383", "first_address_lng": "5.73347116865626", "started": "true", "all_tasks_finished": "false", "start_km": "511", "end_km": null, "tasks_enriched": "true", "in_trip_scan_finished": "true", "eva_added": "true", "trip_start_request_sent": "true" } ] } +{ "routes": [ { "timeframe_key": "15994", "trip_key": "20315994", "trip_number": "10", "trip_pda_status": "5", "trip_pda_status_description": "Rit overgedragen", "trip_sequence_number": "1", "number_in_trip": "135", "plate": "VTG-69-R", "damage_registration": true, "eva": "10:43", "trip_date": "19/4/2023", "first_address_lat": "50.8919767278786", "first_address_lng": "5.74122752631296", "started": "true", "all_tasks_finished": "false", "start_km": "5273", "end_km": null, "tasks_enriched": "true", "in_trip_scan_finished": null, "eva_added": null, "trip_start_request_sent": "true" } ] } ''')); } @@ -50,7 +53,7 @@ class StoregearApiService extends IStoregearApiService { final response = await http.get( Uri.parse('http://dhlapis.com/delivery/v1/routes'), - headers: {'X-API-KEY': apiKey}); + headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()}); if (response.statusCode == 200) { // If the server did return a 200 OK response, @@ -77,7 +80,7 @@ class StoregearApiService extends IStoregearApiService { final response = await http.get( Uri.parse( 'http://dhlapis.com/delivery/v1/routes/' + tripkey.toString()), - headers: {'X-API-KEY': apiKey}); + headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()}); if (response.statusCode == 200) { // If the server did return a 200 OK response, diff --git a/pubspec.yaml b/pubspec.yaml index 678e0a7..4f5e512 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -49,6 +49,8 @@ dependencies: http: ^0.13.5 auto_orientation: ^2.2.1 wakelock: ^0.6.2 + flutter_osm_plugin: ^0.53.2 + flutter_map: ^3.1.0 dev_dependencies: flutter_test: |
