summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-11-04 21:43:39 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-11-04 21:43:39 +0100
commit38ae95255e5f5c1fc2418aeb2ca229cca1071752 (patch)
tree79421ea1408c90572ce71de813fc3d4ce1b5597f
parentd14e215396f7aee61fb8d7963736063ee859b928 (diff)
working uwu
-rw-r--r--lib/RoutingExample.dart129
-rw-r--r--lib/main.dart3
-rw-r--r--lib/pages/navigation_page.dart42
-rw-r--r--lib/route.dart397
-rw-r--r--lib/services/iroute_provider_service.dart7
-rw-r--r--lib/services/mock_route_provider_service.dart7649
6 files changed, 8163 insertions, 64 deletions
diff --git a/lib/RoutingExample.dart b/lib/RoutingExample.dart
index fa8f26d..0ec3e7e 100644
--- a/lib/RoutingExample.dart
+++ b/lib/RoutingExample.dart
@@ -7,6 +7,7 @@ import 'package:flutter/services.dart';
import 'package:geolocator/geolocator.dart';
import 'package:here_sdk/animation.dart';
import 'package:here_sdk/gestures.dart';
+import 'package:here_sdk/search.dart';
import 'package:intl/intl.dart';
import 'package:flutter/material.dart';
import 'package:here_sdk/core.dart';
@@ -17,6 +18,7 @@ import 'package:image/image.dart' as image;
import 'package:here_sdk/routing.dart' as here;
import 'package:training_planner/events/MapPanningEvent.dart';
import 'package:training_planner/pages/navigation_page.dart';
+import 'route.dart' as DHLRoute;
import 'main.dart';
@@ -28,9 +30,13 @@ class RoutingExample {
bool isLookingAround = false;
double currentZoom = 20;
HereMapController hereMapController;
- List<MapPolyline> _mapPolylines = [];
+ List<MapPolyline> _routeSections = [];
+ int routeSectionCursor = 0;
+
+ late DHLRoute.Route _route;
late RoutingEngine _routingEngine;
late GeoCoordinates lastPosition = GeoCoordinates(0, 0);
+ late SearchOptions _searchOptions;
RoutingExample(HereMapController _hereMapController)
: hereMapController = _hereMapController {
@@ -40,6 +46,10 @@ class RoutingExample {
throw ("Initialization of RoutingEngine failed.");
}
+ _searchOptions = SearchOptions.withDefaults();
+ _searchOptions.languageCode = LanguageCode.enUs;
+ _searchOptions.maxItems = 5;
+
//double distanceToEarthInMeters = currentZoom;
//MapMeasure mapMeasureZoom =
// MapMeasure(MapMeasureKind.distance, distanceToEarthInMeters);
@@ -57,12 +67,6 @@ class RoutingExample {
});
}
- Future<Uint8List> _loadFileAsUint8List(String fileName) async {
- // The path refers to the assets directory as specified in pubspec.yaml.
- ByteData fileData = await rootBundle.load('assets/' + fileName);
- return Uint8List.view(fileData.buffer);
- }
-
void _updateLocation(Position value) {
lastPosition = GeoCoordinates(value.latitude, value.longitude);
flyTo(GeoCoordinates(value.latitude, value.longitude));
@@ -105,7 +109,6 @@ class RoutingExample {
GeoCoordinates(geoCoordinates.latitude, geoCoordinates.longitude),
orientation,
MapMeasure(MapMeasureKind.zoomLevel, currentZoom));
- debugPrint('XDDDD' + currentZoom.toString());
}
Widget _createWidget(String label, Color backgroundColor) {
@@ -125,53 +128,109 @@ class RoutingExample {
);
}
- void showAnchoredMapViewPin(GeoCoordinates coords) {
+ void showAnchoredMapViewPin(GeoCoordinates coords, String text) {
var widgetPin = hereMapController.pinWidget(
- _createWidget("43", Color.fromARGB(200, 0, 144, 138)), coords);
+ _createWidget(text, Color.fromARGB(200, 0, 144, 138)), coords);
widgetPin?.anchor = Anchor2D.withHorizontalAndVertical(0.5, 0.5);
}
- Future<void> addRoute() async {
- var startGeoCoordinates = GeoCoordinates(50.8434572, 5.7381166);
- var destinationGeoCoordinates = GeoCoordinates(50.8474741, 5.7330341);
- var startWaypoint = Waypoint.withDefaults(startGeoCoordinates);
- startWaypoint.type = WaypointType.stopover;
- var destinationWaypoint = Waypoint.withDefaults(destinationGeoCoordinates);
- destinationWaypoint.type = WaypointType.stopover;
+ Future<void> addRoute(DHLRoute.Route route) async {
+ if (route.tasks == null) return;
+ _route = route;
+
+ Position currentPosition = await Geolocator.getCurrentPosition(
+ desiredAccuracy: LocationAccuracy.high);
+ GeoCoordinates routeStartCoords =
+ GeoCoordinates(currentPosition.latitude, currentPosition.longitude);
+
+ List<Waypoint> waypoints = [Waypoint.withDefaults(routeStartCoords)];
+
+ GeoCoordinates previousCoords = routeStartCoords;
+ for (final item in route.tasks!) {
+ var destinationGeoCoordinates = GeoCoordinates(
+ double.parse(item.addressLatitude!),
+ double.parse(item.addressLongitude!));
+
+ if (item.groupFirst == 'false') continue;
- List<Waypoint> waypoints = [startWaypoint, destinationWaypoint];
+ waypoints.add(Waypoint.withDefaults(destinationGeoCoordinates));
+ showAnchoredMapViewPin(
+ destinationGeoCoordinates, item.deliverySequenceNumber.toString());
- _routingEngine.calculateCarRoute(waypoints, CarOptions.withDefaults(),
+ previousCoords = destinationGeoCoordinates;
+ }
+
+ PedestrianOptions f = PedestrianOptions.withDefaults();
+ f.routeOptions.alternatives = 0;
+ f.routeOptions.optimizationMode = OptimizationMode.fastest;
+
+ _routingEngine.calculatePedestrianRoute(waypoints, f,
(RoutingError? routingError, List<here.Route>? routeList) async {
if (routingError == null) {
- // When error is null, then the list guaranteed to be not null.
here.Route route = routeList!.first;
- _showRouteOnMap(route, destinationGeoCoordinates);
+
+ _showRouteOnMap(route);
+
+ for (int i = 0; i < route.sections.length; i++) {
+ _showLineToHouse(route.sections.elementAt(i),
+ waypoints.elementAt(i + 1).coordinates);
+ }
+
+ updateHighlightedRouteSections();
} else {
var error = routingError.toString();
}
});
-
- showAnchoredMapViewPin(destinationGeoCoordinates);
}
- _showRouteOnMap(here.Route route, GeoCoordinates destCoords) {
- GeoPolyline routeGeoPolyline = route.geometry;
- double widthInPixels = 15;
+ _showLineToHouse(Section section, GeoCoordinates houseCoords) {
+ GeoPolyline routeGeoPolyline = section.geometry;
- // Line of route
- MapPolyline routeMapPolyline = MapPolyline(
- routeGeoPolyline, widthInPixels, Color.fromARGB(160, 0, 144, 138));
- hereMapController.mapScene.addMapPolyline(routeMapPolyline);
-
- // Line from road to house
GeoPolyline walkLine =
- GeoPolyline([routeGeoPolyline.vertices.last, destCoords]);
+ GeoPolyline([routeGeoPolyline.vertices.last, houseCoords]);
MapPolyline walkPathPolyline =
MapPolyline(walkLine, 8, Color.fromARGB(160, 255, 20, 20));
hereMapController.mapScene.addMapPolyline(walkPathPolyline);
- _mapPolylines.add(walkPathPolyline);
- _mapPolylines.add(routeMapPolyline);
+ //_routeSections.add(walkPathPolyline);
+ }
+
+ _showRouteOnMap(here.Route route) {
+ double widthInPixels = 15;
+
+ for (int i = 0; i < route.sections.length; i++) {
+ Section section = route.sections.elementAt(i);
+ GeoPolyline routeGeoPolyline = section.geometry;
+
+ MapPolyline routeMapPolyline = MapPolyline(
+ routeGeoPolyline, widthInPixels, Color.fromARGB(160, 0, 144, 138));
+ hereMapController.mapScene.addMapPolyline(routeMapPolyline);
+
+ _routeSections.add(routeMapPolyline);
+ }
+ }
+
+ void updateHighlightedRouteSections() {
+ for (int i = 0; i < _routeSections.length; i++) {
+ MapPolyline section = _routeSections.elementAt(i);
+ int maxSections = 5;
+
+ // previous section
+ if (i == routeSectionCursor - 1) {
+ section.lineColor = Color.fromARGB(160, 168, 113, 108);
+ }
+ // current and next 5 sections
+ else if (i >= routeSectionCursor &&
+ i < routeSectionCursor + maxSections) {
+ section.lineColor = Color.fromARGB(
+ (255 - ((255 / (maxSections + 1)) * (i - routeSectionCursor)))
+ .toInt(),
+ 0,
+ 144,
+ 138);
+ } else {
+ section.lineColor = Color.fromARGB(0, 255, 255, 255);
+ }
+ }
}
}
diff --git a/lib/main.dart b/lib/main.dart
index 8f58ca3..a944760 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -5,9 +5,11 @@ import 'package:event_bus/event_bus.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
+import 'package:training_planner/services/iroute_provider_service.dart';
import 'package:training_planner/services/ishift_provider_service.dart';
import 'package:training_planner/services/log_service.dart';
import 'package:training_planner/services/messaging_service.dart';
+import 'package:training_planner/services/mock_route_provider_service.dart';
import 'package:training_planner/services/mock_shift_provider_service.dart';
import 'package:training_planner/services/local_shift_provider_service.dart';
import 'package:training_planner/services/settings_service.dart';
@@ -48,6 +50,7 @@ void _initializeHERESDK() async {
}
}
+final IRouteProviderService routeProvider = MockRouteProviderService();
final IProgramProviderService shiftProvider = LocalShiftProviderService();
final LocalAuthentication auth = LocalAuthentication();
final MessagingService messageService = MessagingService();
diff --git a/lib/pages/navigation_page.dart b/lib/pages/navigation_page.dart
index 58ea307..531395e 100644
--- a/lib/pages/navigation_page.dart
+++ b/lib/pages/navigation_page.dart
@@ -85,6 +85,11 @@ class _NavigationPageState extends State<NavigationPage> {
_routingExample?.changeZoom(_routingExample!.currentZoom - 1);
}
+ void _mockStopComplete() {
+ _routingExample?.routeSectionCursor++;
+ _routingExample?.updateHighlightedRouteSections();
+ }
+
@override
Widget build(BuildContext context) {
return Scaffold(
@@ -94,6 +99,10 @@ class _NavigationPageState extends State<NavigationPage> {
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
+ FloatingActionButton(
+ onPressed: () => _mockStopComplete(),
+ child: Icon(Icons.check_circle),
+ ),
Visibility(
visible: _routingExample == null
? false
@@ -112,6 +121,7 @@ class _NavigationPageState extends State<NavigationPage> {
onPressed: () => _zoomOut(),
child: Icon(Icons.zoom_out),
),
+ Padding(padding: EdgeInsets.all(2)),
FloatingActionButton(
onPressed: () => _zoomIn(),
child: Icon(Icons.zoom_in),
@@ -132,7 +142,9 @@ class _NavigationPageState extends State<NavigationPage> {
(MapError? error) {
if (error == null) {
_routingExample = RoutingExample(hereMapController);
- _routingExample?.addRoute();
+ routeProvider
+ .getRoute(0)
+ .then((value) => _routingExample?.addRoute(value));
} else {
print("Map scene not loaded. MapError: " + error.toString());
}
@@ -149,32 +161,4 @@ class _NavigationPageState extends State<NavigationPage> {
_routingExample?.timer?.cancel();
super.dispose();
}
-
- // A helper method to show a dialog.
- Future<void> _showDialog(String title, String message) async {
- return showDialog<void>(
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return AlertDialog(
- title: Text(title),
- content: SingleChildScrollView(
- child: ListBody(
- children: <Widget>[
- Text(message),
- ],
- ),
- ),
- actions: <Widget>[
- TextButton(
- child: Text('OK'),
- onPressed: () {
- Navigator.of(context).pop();
- },
- ),
- ],
- );
- },
- );
- }
}
diff --git a/lib/route.dart b/lib/route.dart
new file mode 100644
index 0000000..e622c12
--- /dev/null
+++ b/lib/route.dart
@@ -0,0 +1,397 @@
+class RouteInfo {
+ Route? route;
+
+ RouteInfo({this.route});
+
+ RouteInfo.fromJson(Map<String, dynamic> json) {
+ route = json['route'] != null ? Route.fromJson(json['route']) : null;
+ }
+}
+
+class Route {
+ String? timeframeKey;
+ String? tripKey;
+ String? tripNumber;
+ String? tripPdaStatus;
+ String? tripPdaStatusDescription;
+ String? tripSequenceNumber;
+ String? numberInTrip;
+ String? plate;
+ bool? damageRegistration;
+ String? eva;
+ String? tripDate;
+ String? firstAddressLat;
+ String? firstAddressLng;
+ List<Task>? tasks;
+ String? deviceStartLng;
+ String? startKm;
+ String? started;
+ String? deviceStartLat;
+ String? lastTripStartReceivedAt;
+ String? allTasksFinished;
+ String? uniqueStops;
+ String? etaFirstStop;
+ String? inTripScanFinished;
+ String? firstStopLat;
+ String? tasksSize;
+ String? evaAdded;
+ String? tripStartRequestSent;
+ String? etaCalculationSuccess;
+ String? allParcelKeys;
+ String? tasksEnriched;
+ String? enrichedFrom;
+ String? firstStopLng;
+
+ Route(
+ {this.timeframeKey,
+ this.tripKey,
+ this.tripNumber,
+ this.tripPdaStatus,
+ this.tripPdaStatusDescription,
+ this.tripSequenceNumber,
+ this.numberInTrip,
+ this.plate,
+ this.damageRegistration,
+ this.eva,
+ this.tripDate,
+ this.firstAddressLat,
+ this.firstAddressLng,
+ this.tasks,
+ this.deviceStartLng,
+ this.startKm,
+ this.started,
+ this.deviceStartLat,
+ this.lastTripStartReceivedAt,
+ this.allTasksFinished,
+ this.uniqueStops,
+ this.etaFirstStop,
+ this.inTripScanFinished,
+ this.firstStopLat,
+ this.tasksSize,
+ this.evaAdded,
+ this.tripStartRequestSent,
+ this.etaCalculationSuccess,
+ this.allParcelKeys,
+ this.tasksEnriched,
+ this.enrichedFrom,
+ this.firstStopLng});
+
+ Route.fromJson(Map<String, dynamic> json) {
+ timeframeKey = json['timeframe_key'];
+ tripKey = json['trip_key'];
+ tripNumber = json['trip_number'];
+ tripPdaStatus = json['trip_pda_status'];
+ tripPdaStatusDescription = json['trip_pda_status_description'];
+ tripSequenceNumber = json['trip_sequence_number'];
+ numberInTrip = json['number_in_trip'];
+ plate = json['plate'];
+ damageRegistration = json['damage_registration'];
+ eva = json['eva'];
+ tripDate = json['trip_date'];
+ firstAddressLat = json['first_address_lat'];
+ firstAddressLng = json['first_address_lng'];
+ if (json['tasks'] != null) {
+ tasks = <Task>[];
+ json['tasks'].forEach((v) {
+ tasks!.add(new Task.fromJson(v));
+ });
+ }
+ deviceStartLng = json['device_start_lng'];
+ startKm = json['start_km'];
+ started = json['started'];
+ deviceStartLat = json['device_start_lat'];
+ lastTripStartReceivedAt = json['last_trip_start_received_at'];
+ allTasksFinished = json['all_tasks_finished'];
+ uniqueStops = json['unique_stops'];
+ etaFirstStop = json['eta_first_stop'];
+ inTripScanFinished = json['in_trip_scan_finished'];
+ firstStopLat = json['first_stop_lat'];
+ tasksSize = json['tasks_size'];
+ evaAdded = json['eva_added'];
+ tripStartRequestSent = json['trip_start_request_sent'];
+ etaCalculationSuccess = json['eta_calculation_success'];
+ allParcelKeys = json['all_parcel_keys'];
+ tasksEnriched = json['tasks_enriched'];
+ enrichedFrom = json['enriched_from'];
+ firstStopLng = json['first_stop_lng'];
+ }
+}
+
+class Task {
+ String? timeframeKey;
+ String? tripKey;
+ String? parcelKey;
+ String? pid;
+ String? postalCodeNumeric;
+ String? postalCodeAlpha;
+ String? street;
+ String? houseNumber;
+ String? houseNumberAddition;
+ String? city;
+ String? addressLatitude;
+ String? addressLongitude;
+ String? customerShortName;
+ String? productTypeDescription;
+ String? deliverySequenceNumber;
+ String? deliveryMoment;
+ String? beginDeliveryPickupWindow;
+ String? endDeliveryPickupWindow;
+ String? deliveryInstruction;
+ Null? parcelDeliveryRemark;
+ Null? courierRemark;
+ String? serviceType;
+ bool? servicepointParcel;
+ String? servicepointid;
+ String? nextTimeframeDescrAbbrevation;
+ String? parcelStatusKey;
+ String? scannedInTrip;
+ String? parcelId;
+ String? timeframe;
+ String? groupFirst;
+ String? groupTaskIndex;
+ String? grouped;
+ String? groupId;
+ String? groupSize;
+ String? activeGroupSize;
+ List<String>? groupPids;
+ List<String>? groupParcelKeys;
+ String? groupSenderNames;
+ String? lat;
+ String? lng;
+ String? deliveryCode;
+ String? fullAddressForNavigation;
+ String? finished;
+ String? finishedAtTimestamp;
+ String? finishedAt;
+ String? pNumber;
+ String? deviceName;
+ String? eta;
+ InterventionData? interventionData;
+ String? interventionMessageConfirmed;
+ String? isIntervention;
+ bool? indicationNotAtNeighbours;
+ bool? indicationSignatureRequired;
+ String? nextTimeframeDescrFull;
+ String? nextDeliveryDay;
+ List<int>? calculatedGroupPids;
+
+ Task(
+ {this.timeframeKey,
+ this.tripKey,
+ this.parcelKey,
+ this.pid,
+ this.postalCodeNumeric,
+ this.postalCodeAlpha,
+ this.street,
+ this.houseNumber,
+ this.houseNumberAddition,
+ this.city,
+ this.addressLatitude,
+ this.addressLongitude,
+ this.customerShortName,
+ this.productTypeDescription,
+ this.deliverySequenceNumber,
+ this.deliveryMoment,
+ this.beginDeliveryPickupWindow,
+ this.endDeliveryPickupWindow,
+ this.deliveryInstruction,
+ this.parcelDeliveryRemark,
+ this.courierRemark,
+ this.serviceType,
+ this.servicepointParcel,
+ this.servicepointid,
+ this.nextTimeframeDescrAbbrevation,
+ this.parcelStatusKey,
+ this.scannedInTrip,
+ this.parcelId,
+ this.timeframe,
+ this.groupFirst,
+ this.groupTaskIndex,
+ this.grouped,
+ this.groupId,
+ this.groupSize,
+ this.activeGroupSize,
+ this.groupPids,
+ this.groupParcelKeys,
+ this.groupSenderNames,
+ this.lat,
+ this.lng,
+ this.deliveryCode,
+ this.fullAddressForNavigation,
+ this.finished,
+ this.finishedAtTimestamp,
+ this.finishedAt,
+ this.pNumber,
+ this.deviceName,
+ this.eta,
+ this.interventionData,
+ this.interventionMessageConfirmed,
+ this.isIntervention,
+ this.indicationNotAtNeighbours,
+ this.indicationSignatureRequired,
+ this.nextTimeframeDescrFull,
+ this.nextDeliveryDay,
+ this.calculatedGroupPids});
+
+ Task.fromJson(Map<String, dynamic> json) {
+ timeframeKey = json['timeframe_key'];
+ tripKey = json['trip_key'];
+ parcelKey = json['parcel_key'];
+ pid = json['pid'];
+ postalCodeNumeric = json['postal_code_numeric'];
+ postalCodeAlpha = json['postal_code_alpha'];
+ street = json['street'];
+ houseNumber = json['house_number'];
+ houseNumberAddition = json['house_number_addition'];
+ city = json['city'];
+ addressLatitude = json['address_latitude'];
+ addressLongitude = json['address_longitude'];
+ customerShortName = json['customer_short_name'];
+ productTypeDescription = json['product_type_description'];
+ deliverySequenceNumber = json['delivery_sequence_number'];
+ deliveryMoment = json['delivery_moment'];
+ beginDeliveryPickupWindow = json['begin_delivery_pickup_window'];
+ endDeliveryPickupWindow = json['end_delivery_pickup_window'];
+ deliveryInstruction = json['delivery_instruction'];
+ parcelDeliveryRemark = json['parcel_delivery_remark'];
+ courierRemark = json['courier_remark'];
+ serviceType = json['service_type'];
+ servicepointParcel = json['servicepoint_parcel'];
+ servicepointid = json['servicepointid'];
+ nextTimeframeDescrAbbrevation = json['next_timeframe_descr_abbrevation'];
+ parcelStatusKey = json['parcel_status_key'];
+ scannedInTrip = json['scanned_in_trip'];
+ parcelId = json['parcel_id'];
+ timeframe = json['timeframe'];
+ groupFirst = json['group_first'];
+ groupTaskIndex = json['group_task_index'];
+ grouped = json['grouped'];
+ groupId = json['group_id'];
+ groupSize = json['group_size'];
+ activeGroupSize = json['active_group_size'];
+ groupPids = json['group_pids'].cast<String>();
+ groupParcelKeys = json['group_parcel_keys'].cast<String>();
+ groupSenderNames = json['group_sender_names'];
+ lat = json['lat'];
+ lng = json['lng'];
+ deliveryCode = json['delivery_code'];
+ fullAddressForNavigation = json['full_address_for_navigation'];
+ finished = json['finished'];
+ finishedAtTimestamp = json['finished_at_timestamp'];
+ finishedAt = json['finished_at'];
+ pNumber = json['p_number'];
+ deviceName = json['device_name'];
+ eta = json['eta'];
+ interventionData = json['intervention_data'] != null
+ ? new InterventionData.fromJson(json['intervention_data'])
+ : null;
+ interventionMessageConfirmed = json['intervention_message_confirmed'];
+ isIntervention = json['is_intervention'];
+ indicationNotAtNeighbours = json['indication_not_at_neighbours'];
+ indicationSignatureRequired = json['indication_signature_required'];
+ nextTimeframeDescrFull = json['next_timeframe_descr_full'];
+ nextDeliveryDay = json['next_delivery_day'];
+ if (json['calculated_group_pids'] != null) {
+ calculatedGroupPids = <int>[];
+ json['calculated_group_pids'].forEach((v) {
+ calculatedGroupPids!.add(int.parse(v));
+ });
+ }
+ }
+}
+
+class InterventionData {
+ ServicePointDelivery? servicePointDelivery;
+ String? timestamp;
+ String? status;
+ String? parcelId;
+ String? interventionId;
+ String? type;
+ String? parcelKey;
+ TimeframeChange? timeframeChange;
+ AgreedPlace? agreedPlace;
+ String? agreedPlaceDescription;
+
+ InterventionData(
+ {this.servicePointDelivery,
+ this.timestamp,
+ this.status,
+ this.parcelId,
+ this.interventionId,
+ this.type,
+ this.parcelKey,
+ this.timeframeChange,
+ this.agreedPlace,
+ this.agreedPlaceDescription});
+
+ InterventionData.fromJson(Map<String, dynamic> json) {
+ servicePointDelivery = json['servicePointDelivery'] != null
+ ? new ServicePointDelivery.fromJson(json['servicePointDelivery'])
+ : null;
+ timestamp = json['timestamp'];
+ status = json['status'];
+ parcelId = json['parcelId'];
+ interventionId = json['interventionId'];
+ type = json['type'];
+ parcelKey = json['parcelKey'];
+ timeframeChange = json['timeframeChange'] != null
+ ? new TimeframeChange.fromJson(json['timeframeChange'])
+ : null;
+ agreedPlace = json['agreedPlace'] != null
+ ? new AgreedPlace.fromJson(json['agreedPlace'])
+ : null;
+ agreedPlaceDescription = json['agreed_place_description'];
+ }
+}
+
+class ServicePointDelivery {
+ String? servicePointId;
+
+ ServicePointDelivery({this.servicePointId});
+
+ ServicePointDelivery.fromJson(Map<String, dynamic> json) {
+ servicePointId = json['servicePointId'];
+ }
+
+ Map<String, dynamic> toJson() {
+ final Map<String, dynamic> data = new Map<String, dynamic>();
+ data['servicePointId'] = this.servicePointId;
+ return data;
+ }
+}
+
+class TimeframeChange {
+ Timeframe? timeframe;
+
+ TimeframeChange({this.timeframe});
+
+ TimeframeChange.fromJson(Map<String, dynamic> json) {
+ timeframe = json['timeframe'] != null
+ ? new Timeframe.fromJson(json['timeframe'])
+ : null;
+ }
+}
+
+class Timeframe {
+ String? from;
+ String? to;
+
+ Timeframe({this.from, this.to});
+
+ Timeframe.fromJson(Map<String, dynamic> json) {
+ from = json['from'];
+ to = json['to'];
+ }
+}
+
+class AgreedPlace {
+ String? placeDescription;
+ String? agreeWithTerms;
+
+ AgreedPlace({this.placeDescription, this.agreeWithTerms});
+
+ AgreedPlace.fromJson(Map<String, dynamic> json) {
+ placeDescription = json['placeDescription'];
+ agreeWithTerms = json['agreeWithTerms'];
+ }
+}
diff --git a/lib/services/iroute_provider_service.dart b/lib/services/iroute_provider_service.dart
new file mode 100644
index 0000000..521b9ec
--- /dev/null
+++ b/lib/services/iroute_provider_service.dart
@@ -0,0 +1,7 @@
+import 'dart:async';
+
+import 'package:training_planner/route.dart';
+
+abstract class IRouteProviderService {
+ Future<Route> getRoute(int number);
+}
diff --git a/lib/services/mock_route_provider_service.dart b/lib/services/mock_route_provider_service.dart
new file mode 100644
index 0000000..20dac8f
--- /dev/null
+++ b/lib/services/mock_route_provider_service.dart
@@ -0,0 +1,7649 @@
+import 'dart:convert';
+
+import 'package:training_planner/route.dart';
+import 'package:training_planner/services/iroute_provider_service.dart';
+
+class MockRouteProviderService extends IRouteProviderService {
+ @override
+ Future<Route> getRoute(int number) async {
+ return Route.fromJson(jsonDecode('''
+{
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "trip_number":"9",
+ "trip_pda_status":"5",
+ "trip_pda_status_description":"Rit overgedragen",
+ "trip_sequence_number":"1",
+ "number_in_trip":"139",
+ "plate":"VND-37-B",
+ "damage_registration":true,
+ "eva":"11:11",
+ "trip_date":"4/11/2022",
+ "first_address_lat":"50.8996568140536",
+ "first_address_lng":"5.75238472757395",
+ "tasks":[
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082780626",
+ "pid":"3SMPK11626936",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NW",
+ "street":"GROENEWG",
+ "house_number":"3",
+ "house_number_addition":"c",
+ "city":"BUNDE",
+ "address_latitude":"50.8996568140536",
+ "address_longitude":"5.75238472757395",
+ "customer_short_name":"iBOOD",
+ "product_type_description":null,
+ "delivery_sequence_number":"1",
+ "delivery_moment":"2022-11-04T11:11:50+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SMPK11626936",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NW3C",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89996414",
+ "lng":"5.7524459",
+ "delivery_code":"",
+ "full_address_for_navigation":"GROENEWEG 3, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557022",
+ "finished_at":"2022-11-04 11:17:02 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:11"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082317614",
+ "pid":"3SBPB0003207933",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NW",
+ "street":"Groeneweg",
+ "house_number":"2",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9020388654307",
+ "address_longitude":"5.75272508451453",
+ "customer_short_name":"Notino",
+ "product_type_description":null,
+ "delivery_sequence_number":"2",
+ "delivery_moment":"2022-11-04T11:13:39+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SBPB0003207933",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NW2",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90203886",
+ "lng":"5.75272517",
+ "delivery_code":"",
+ "full_address_for_navigation":"GROENEWEG 2, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557184",
+ "finished_at":"2022-11-04 11:19:44 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:13"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082382482",
+ "pid":"JJD000090254000019335763",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NV",
+ "street":"WONKELESTR",
+ "house_number":"7",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9052879439676",
+ "address_longitude":"5.75165355297352",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"3",
+ "delivery_moment":"2022-11-04T11:15:45+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019335763",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NV7",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90528794",
+ "lng":"5.75165364",
+ "delivery_code":"",
+ "full_address_for_navigation":"WONKELESTRAAT 7, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557288",
+ "finished_at":"2022-11-04 11:21:28 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:15"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083277016",
+ "pid":"3SALPK134340201",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NV",
+ "street":"WONKELESTR",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9055893342125",
+ "address_longitude":"5.75145576185317",
+ "customer_short_name":"MR MARVIS",
+ "product_type_description":null,
+ "delivery_sequence_number":"4",
+ "delivery_moment":"2022-11-04T11:17:15+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.75145584",
+ "active_group_size":"1",
+ "timeframe":"10:00-15:00",
+ "group_parcel_keys":[
+
+ ],
+ "group_id":"10:00_15:00_6241NV8",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "intervention_data":{
+ "servicePointDelivery":{
+ "servicePointId":"NL-624101"
+ },
+ "timestamp":"2022-11-04T08:14:34.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SALPK134340201",
+ "interventionId":"43583921",
+ "type":"to_sp",
+ "parcelKey":"1083277016"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"WONKELESTRAAT 8, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SALPK134340201",
+ "is_intervention":"true",
+ "lat":"50.90558933",
+ "eta":"11:17"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082337750",
+ "pid":"3SAKP001453362",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NM",
+ "street":"KASENNERWG",
+ "house_number":"6",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.904039496227",
+ "address_longitude":"5.74823773289109",
+ "customer_short_name":"1 DC AALSMEER",
+ "product_type_description":null,
+ "delivery_sequence_number":"5",
+ "delivery_moment":"2022-11-04T11:19:35+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SAKP001453362",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NM6",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90403949",
+ "lng":"5.74823782",
+ "delivery_code":"",
+ "full_address_for_navigation":"KASENNERWEG 6, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557483",
+ "finished_at":"2022-11-04 11:24:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:19"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082386286",
+ "pid":"JVGL05762596000859968519",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NS",
+ "street":"OP DE LOCHT",
+ "house_number":"38",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9039066724587",
+ "address_longitude":"5.7438522486746",
+ "customer_short_name":"Allekabels BV - ",
+ "product_type_description":null,
+ "delivery_sequence_number":"6",
+ "delivery_moment":"2022-11-04T11:22:11+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL05762596000859968519",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NS38",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90390667",
+ "lng":"5.74385233",
+ "delivery_code":"",
+ "full_address_for_navigation":"OP DE LOCHT 38, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557610",
+ "finished_at":"2022-11-04 11:26:50 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081965791",
+ "pid":"3SHM00003039999",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NP",
+ "street":"OP DE BERG",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9021280733183",
+ "address_longitude":"5.74323111420803",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"7",
+ "delivery_moment":"2022-11-04T11:24:05+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00003039999",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241NP8",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "3SHM00003038681",
+ "3SHM00003039999"
+ ],
+ "group_parcel_keys":[
+ "1081965790",
+ "1081965791"
+ ],
+ "group_sender_names":"H&M",
+ "lat":"50.90212807",
+ "lng":"5.7432312",
+ "delivery_code":"",
+ "full_address_for_navigation":"OP DE BERG 8, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557771",
+ "finished_at":"2022-11-04 11:29:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:24"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081965790",
+ "pid":"3SHM00003038681",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NP",
+ "street":"OP DE BERG",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9021280733183",
+ "address_longitude":"5.74323111420803",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"8",
+ "delivery_moment":"2022-11-04T11:24:05+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00003038681",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241NP8",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "3SHM00003038681",
+ "3SHM00003039999"
+ ],
+ "group_parcel_keys":[
+ "1081965790",
+ "1081965791"
+ ],
+ "group_sender_names":"H&M",
+ "lat":"50.90212807",
+ "lng":"5.7432312",
+ "delivery_code":"",
+ "full_address_for_navigation":"OP DE BERG 8, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667557771",
+ "finished_at":"2022-11-04 11:29:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:24"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082595448",
+ "pid":"3SLDL5002523800",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NR",
+ "street":"OP DE LOCHT",
+ "house_number":"3",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8999455030932",
+ "address_longitude":"5.73893713692187",
+ "customer_short_name":"LIDL",
+ "product_type_description":"V+",
+ "delivery_sequence_number":"9",
+ "delivery_moment":"2022-11-04T11:27:48+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SLDL5002523800",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NR3NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8999455",
+ "lng":"5.73893722",
+ "delivery_code":"",
+ "full_address_for_navigation":"OP DE LOCHT 3, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558029",
+ "finished_at":"2022-11-04 11:33:49 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:27"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082055055",
+ "pid":"CD119135722BE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CL",
+ "street":"SPOORSTRAAT",
+ "house_number":"51",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8983608451423",
+ "address_longitude":"5.73555548651361",
+ "customer_short_name":"MOTO DE DECK",
+ "product_type_description":"PA",
+ "delivery_sequence_number":"10",
+ "delivery_moment":"2022-11-04T11:30:11+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"CD119135722BE",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CL51",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89836084",
+ "lng":"5.73555557",
+ "delivery_code":"",
+ "full_address_for_navigation":"SPOORSTRAAT 51, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558274",
+ "finished_at":"2022-11-04 11:37:54 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082054939",
+ "pid":"3SBPB0003207534",
+ "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":"lampenmanie.nl",
+ "product_type_description":null,
+ "delivery_sequence_number":"11",
+ "delivery_moment":"2022-11-04T11:31:36+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SBPB0003207534",
+ "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.89816116",
+ "lng":"5.73559728",
+ "delivery_code":"",
+ "full_address_for_navigation":"SPOORSTRAAT 47, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558351",
+ "finished_at":"2022-11-04 11:39:11 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:31"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083069759",
+ "pid":"JVGLOTC0038419066",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CL",
+ "street":"SPOORSTR",
+ "house_number":"41",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8975021142158",
+ "address_longitude":"5.73547453880158",
+ "customer_short_name":"Kashkool Books",
+ "product_type_description":null,
+ "delivery_sequence_number":"12",
+ "delivery_moment":"2022-11-04T11:33:35+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGLOTC0038419066",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CL41",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89750211",
+ "lng":"5.73547462",
+ "delivery_code":"",
+ "full_address_for_navigation":"SPOORSTRAAT 41, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558417",
+ "finished_at":"2022-11-04 11:40:17 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:33"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082875386",
+ "pid":"JVGL06244172001885428432",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"46",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8966115236223",
+ "address_longitude":"5.7350481063234",
+ "customer_short_name":"Backshop B.V. - ",
+ "product_type_description":null,
+ "delivery_sequence_number":"13",
+ "delivery_moment":"2022-11-04T11:36:00+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06244172001885428432",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CH46",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89661152",
+ "lng":"5.73504819",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 46, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558566",
+ "finished_at":"2022-11-04 11:42:46 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:36"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083017437",
+ "pid":"JVGLOTC0036221079",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CE",
+ "street":"VLIEGENSTR",
+ "house_number":"35",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.895566846062",
+ "address_longitude":"5.73591152388695",
+ "customer_short_name":"Melissa de Vries",
+ "product_type_description":null,
+ "delivery_sequence_number":"14",
+ "delivery_moment":"2022-11-04T11:37:44+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGLOTC0036221079",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CE35",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89556684",
+ "lng":"5.73591161",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 35, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558637",
+ "finished_at":"2022-11-04 11:43:57 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:37"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082609204",
+ "pid":"JVGL06123194020027",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"14",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8946936257491",
+ "address_longitude":"5.73595568188386",
+ "customer_short_name":"Juwelo C/o Dhl Parcel 7s",
+ "product_type_description":null,
+ "delivery_sequence_number":"15",
+ "delivery_moment":"2022-11-04T11:39:19+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06123194020027",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CH14",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL06123194020027",
+ "3SCHM002012393"
+ ],
+ "group_parcel_keys":[
+ "1082609204",
+ "1083168207"
+ ],
+ "group_sender_names":"Juwelo C/o Dhl Parcel 7s, SCHUURMAN SCHOENEN",
+ "lat":"50.89469362",
+ "lng":"5.73595576",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 14, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558736",
+ "finished_at":"2022-11-04 11:45:36 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:39"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083168207",
+ "pid":"3SCHM002012393",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"14",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8946936257491",
+ "address_longitude":"5.73595568188386",
+ "customer_short_name":"SCHUURMAN SCHOENEN",
+ "product_type_description":null,
+ "delivery_sequence_number":"16",
+ "delivery_moment":"2022-11-04T11:39:19+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SCHM002012393",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CH14",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL06123194020027",
+ "3SCHM002012393"
+ ],
+ "group_parcel_keys":[
+ "1082609204",
+ "1083168207"
+ ],
+ "group_sender_names":"Juwelo C/o Dhl Parcel 7s, SCHUURMAN SCHOENEN",
+ "lat":"50.89469362",
+ "lng":"5.73595576",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 14, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558736",
+ "finished_at":"2022-11-04 11:45:36 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:39"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082055583",
+ "pid":"CD119139786BE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTRAAT",
+ "house_number":"10",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8945096387319",
+ "address_longitude":"5.73615938754218",
+ "customer_short_name":"PNCREA.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"17",
+ "delivery_moment":"2022-11-04T11:40:54+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"CD119139786BE",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CH10",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89450963",
+ "lng":"5.73615947",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 10, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558781",
+ "finished_at":"2022-11-04 11:46:21 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:40"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083308037",
+ "pid":"JVGL06227052128135",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CE",
+ "street":"VLIEGENSTR",
+ "house_number":"9",
+ "house_number_addition":"-A",
+ "city":"BUNDE",
+ "address_latitude":"50.8944932659343",
+ "address_longitude":"5.73649127821323",
+ "customer_short_name":"Miss Etam",
+ "product_type_description":null,
+ "delivery_sequence_number":"18",
+ "delivery_moment":"2022-11-04T11:42:19+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06227052128135",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CE9-A",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89444473",
+ "lng":"5.73654785",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 9, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667558917",
+ "finished_at":"2022-11-04 11:48:37 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:42"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1079944858",
+ "pid":"3SWLT0027118114",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BX",
+ "street":"TRICHTERSTR",
+ "house_number":"15",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8953607990057",
+ "address_longitude":"5.7346047723772",
+ "customer_short_name":"YUNEXPRESS NETHERLANDS B.V.",
+ "product_type_description":null,
+ "delivery_sequence_number":"19",
+ "delivery_moment":"2022-11-04T11:44:18+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SWLT0027118114",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BX15",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89536079",
+ "lng":"5.73460485",
+ "delivery_code":"",
+ "full_address_for_navigation":"TRICHTERSTRAAT 15, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559023",
+ "finished_at":"2022-11-04 11:50:23 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:44"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082393783",
+ "pid":"3SQLW850367915",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"16",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8956873850757",
+ "address_longitude":"5.73414856181814",
+ "customer_short_name":"Kip Aloha damesmode",
+ "product_type_description":null,
+ "delivery_sequence_number":"20",
+ "delivery_moment":"2022-11-04T11:46:06+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SQLW850367915",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CD16",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "3SHEM2691668701",
+ "3SQLW850367915"
+ ],
+ "group_parcel_keys":[
+ "1083254608",
+ "1082393783"
+ ],
+ "group_sender_names":"HEMA, Kip Aloha damesmode",
+ "lat":"50.89568738",
+ "lng":"5.73414864",
+ "delivery_code":"",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 16, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559189",
+ "finished_at":"2022-11-04 11:53:09 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:46"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083254608",
+ "pid":"3SHEM2691668701",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"16",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8956873850757",
+ "address_longitude":"5.73414856181814",
+ "customer_short_name":"HEMA",
+ "product_type_description":null,
+ "delivery_sequence_number":"21",
+ "delivery_moment":"2022-11-04T11:46:06+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHEM2691668701",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CD16",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "3SHEM2691668701",
+ "3SQLW850367915"
+ ],
+ "group_parcel_keys":[
+ "1083254608",
+ "1082393783"
+ ],
+ "group_sender_names":"HEMA, Kip Aloha damesmode",
+ "lat":"50.89568738",
+ "lng":"5.73414864",
+ "delivery_code":"",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 16, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559189",
+ "finished_at":"2022-11-04 11:53:09 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:46"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439201",
+ "pid":"00340433988156820561",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"20",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8958086936786",
+ "address_longitude":"5.73365243122302",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"22",
+ "delivery_moment":"2022-11-04T11:47:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "lng":"5.73365251",
+ "p_number":"639174",
+ "active_group_size":"5",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083439239",
+ "1083439240",
+ "1083439241",
+ "1083439242",
+ "1083439201"
+ ],
+ "group_id":"10:00_15:00_6241CD20NBB",
+ "group_first":"false",
+ "group_sender_names":"PA・EUROPLUS, EUROPLUS",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667559412",
+ "finished":"true",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 20, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 11:56:52 +0100",
+ "group_pids":[
+ "JVGL0631731740467257",
+ "JVGL0631731740467089",
+ "JVGL0631731740445863",
+ "JVGL0631731740445852",
+ "00340433988156820561"
+ ],
+ "group_task_index":"4",
+ "group_size":"5",
+ "parcel_id":"00340433988156820561",
+ "lat":"50.89580869",
+ "eta":"11:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439241",
+ "pid":"JVGL0631731740445863",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"20",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8958086936786",
+ "address_longitude":"5.73365243122302",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"23",
+ "delivery_moment":"2022-11-04T11:47:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "lng":"5.73365251",
+ "p_number":"639174",
+ "active_group_size":"5",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083439239",
+ "1083439240",
+ "1083439241",
+ "1083439242",
+ "1083439201"
+ ],
+ "group_id":"10:00_15:00_6241CD20NBB",
+ "group_first":"false",
+ "group_sender_names":"PA・EUROPLUS, EUROPLUS",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667559412",
+ "finished":"true",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 20, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 11:56:52 +0100",
+ "group_pids":[
+ "JVGL0631731740467257",
+ "JVGL0631731740467089",
+ "JVGL0631731740445863",
+ "JVGL0631731740445852",
+ "00340433988156820561"
+ ],
+ "group_task_index":"2",
+ "group_size":"5",
+ "parcel_id":"JVGL0631731740445863",
+ "lat":"50.89580869",
+ "eta":"11:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439240",
+ "pid":"JVGL0631731740467089",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"20",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8958086936786",
+ "address_longitude":"5.73365243122302",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"24",
+ "delivery_moment":"2022-11-04T11:47:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "lng":"5.73365251",
+ "p_number":"639174",
+ "active_group_size":"5",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083439239",
+ "1083439240",
+ "1083439241",
+ "1083439242",
+ "1083439201"
+ ],
+ "group_id":"10:00_15:00_6241CD20NBB",
+ "group_first":"false",
+ "group_sender_names":"PA・EUROPLUS, EUROPLUS",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667559412",
+ "finished":"true",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 20, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 11:56:52 +0100",
+ "group_pids":[
+ "JVGL0631731740467257",
+ "JVGL0631731740467089",
+ "JVGL0631731740445863",
+ "JVGL0631731740445852",
+ "00340433988156820561"
+ ],
+ "group_task_index":"1",
+ "group_size":"5",
+ "parcel_id":"JVGL0631731740467089",
+ "lat":"50.89580869",
+ "eta":"11:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439242",
+ "pid":"JVGL0631731740445852",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"20",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8958086936786",
+ "address_longitude":"5.73365243122302",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"25",
+ "delivery_moment":"2022-11-04T11:47:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "lng":"5.73365251",
+ "p_number":"639174",
+ "active_group_size":"5",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083439239",
+ "1083439240",
+ "1083439241",
+ "1083439242",
+ "1083439201"
+ ],
+ "group_id":"10:00_15:00_6241CD20NBB",
+ "group_first":"false",
+ "group_sender_names":"PA・EUROPLUS, EUROPLUS",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667559412",
+ "finished":"true",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 20, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 11:56:52 +0100",
+ "group_pids":[
+ "JVGL0631731740467257",
+ "JVGL0631731740467089",
+ "JVGL0631731740445863",
+ "JVGL0631731740445852",
+ "00340433988156820561"
+ ],
+ "group_task_index":"3",
+ "group_size":"5",
+ "parcel_id":"JVGL0631731740445852",
+ "lat":"50.89580869",
+ "eta":"11:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439239",
+ "pid":"JVGL0631731740467257",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"20",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8958086936786",
+ "address_longitude":"5.73365243122302",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":"PA",
+ "delivery_sequence_number":"26",
+ "delivery_moment":"2022-11-04T11:47:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "lng":"5.73365251",
+ "p_number":"639174",
+ "active_group_size":"5",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083439239",
+ "1083439240",
+ "1083439241",
+ "1083439242",
+ "1083439201"
+ ],
+ "group_id":"10:00_15:00_6241CD20NBB",
+ "group_first":"true",
+ "group_sender_names":"PA・EUROPLUS, EUROPLUS",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667559411",
+ "finished":"true",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 20, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 11:56:51 +0100",
+ "group_pids":[
+ "JVGL0631731740467257",
+ "JVGL0631731740467089",
+ "JVGL0631731740445863",
+ "JVGL0631731740445852",
+ "00340433988156820561"
+ ],
+ "group_task_index":"0",
+ "group_size":"5",
+ "parcel_id":"JVGL0631731740467257",
+ "lat":"50.89580869",
+ "eta":"11:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1080847897",
+ "pid":"JVGL06186266000218510303",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CD",
+ "street":"ST ROCHUSSTR",
+ "house_number":"33",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8965987069927",
+ "address_longitude":"5.73338786369178",
+ "customer_short_name":"E-Commerce Retailer(Shipper only, not seller) ",
+ "product_type_description":null,
+ "delivery_sequence_number":"27",
+ "delivery_moment":"2022-11-04T11:50:15+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06186266000218510303",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CD33",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8965987",
+ "lng":"5.73338795",
+ "delivery_code":"",
+ "full_address_for_navigation":"SINT ROCHUSSTRAAT 33, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559528",
+ "finished_at":"2022-11-04 11:58:48 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:50"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083260754",
+ "pid":"JVGL06223820002093109663",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CA",
+ "street":"ST AGNESPLN",
+ "house_number":"9",
+ "house_number_addition":"O",
+ "city":"BUNDE",
+ "address_latitude":"50.896863176800835",
+ "address_longitude":"5.731522093928479",
+ "customer_short_name":"Blokker B.V. - ",
+ "product_type_description":null,
+ "delivery_sequence_number":"28",
+ "delivery_moment":"2022-11-04T11:52:11+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06223820002093109663",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CA9O",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8968568",
+ "lng":"5.73155775",
+ "delivery_code":"",
+ "full_address_for_navigation":"SINT AGNESPLEIN 9, BUNDE",
+ "eta":"11:52"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083301535",
+ "pid":"594310778453",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BZ",
+ "street":"INGENOPESTR",
+ "house_number":"12",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8964606137217",
+ "address_longitude":"5.73113640085529",
+ "customer_short_name":"DEUTSCHE",
+ "product_type_description":null,
+ "delivery_sequence_number":"29",
+ "delivery_moment":"2022-11-04T11:53:44+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"10",
+ "scanned_in_trip":"true",
+ "parcel_id":"594310778453",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BZ12",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89646061",
+ "lng":"5.73113648",
+ "delivery_code":"",
+ "full_address_for_navigation":"INGENOPESTRAAT 12, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559849",
+ "finished_at":"2022-11-04 12:04:09 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:53"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082625664",
+ "pid":"JJD000090254000019339057",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BZ",
+ "street":"INGENOPESTR",
+ "house_number":"5",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8962098515417",
+ "address_longitude":"5.73127851873302",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"30",
+ "delivery_moment":"2022-11-04T11:55:09+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019339057",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BZ5",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89620985",
+ "lng":"5.7312786",
+ "delivery_code":"",
+ "full_address_for_navigation":"INGENOPESTRAAT 5, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667559916",
+ "finished_at":"2022-11-04 12:05:16 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:55"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082473652",
+ "pid":"3SHEM2690083401",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"64",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8973062415842",
+ "address_longitude":"5.73389064185126",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":"VP",
+ "delivery_sequence_number":"31",
+ "delivery_moment":"2022-11-04T11:57:17+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SHEM2690083401",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CH64NBB",
+ "group_size":"3",
+ "active_group_size":"3",
+ "group_pids":[
+ "3SHEM2690083401",
+ "3SHEM2690083402",
+ "3SHEM2690083403"
+ ],
+ "group_parcel_keys":[
+ "1082473652",
+ "1082473653",
+ "1082473654"
+ ],
+ "group_sender_names":"VP・EUROPLUS",
+ "lat":"50.89729939",
+ "lng":"5.73388288",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 64, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560123",
+ "finished_at":"2022-11-04 12:08:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:57"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082473653",
+ "pid":"3SHEM2690083402",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"64",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8973062415842",
+ "address_longitude":"5.73389064185126",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":"VP",
+ "delivery_sequence_number":"32",
+ "delivery_moment":"2022-11-04T11:57:17+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SHEM2690083402",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CH64NBB",
+ "group_size":"3",
+ "active_group_size":"3",
+ "group_pids":[
+ "3SHEM2690083401",
+ "3SHEM2690083402",
+ "3SHEM2690083403"
+ ],
+ "group_parcel_keys":[
+ "1082473652",
+ "1082473653",
+ "1082473654"
+ ],
+ "group_sender_names":"VP・EUROPLUS",
+ "lat":"50.89729939",
+ "lng":"5.73388288",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 64, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560123",
+ "finished_at":"2022-11-04 12:08:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:57"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082473654",
+ "pid":"3SHEM2690083403",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CH",
+ "street":"VLIEGENSTR",
+ "house_number":"64",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8973062415842",
+ "address_longitude":"5.73389064185126",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":"VP",
+ "delivery_sequence_number":"33",
+ "delivery_moment":"2022-11-04T11:57:17+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SHEM2690083403",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"2",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241CH64NBB",
+ "group_size":"3",
+ "active_group_size":"3",
+ "group_pids":[
+ "3SHEM2690083401",
+ "3SHEM2690083402",
+ "3SHEM2690083403"
+ ],
+ "group_parcel_keys":[
+ "1082473652",
+ "1082473653",
+ "1082473654"
+ ],
+ "group_sender_names":"VP・EUROPLUS",
+ "lat":"50.89729939",
+ "lng":"5.73388288",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 64, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560123",
+ "finished_at":"2022-11-04 12:08:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"11:57"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082736688",
+ "pid":"JJD000090254011007817872",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CG",
+ "street":"VLIEGENSTR",
+ "house_number":"85",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8981269207105",
+ "address_longitude":"5.73287053852896",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"34",
+ "delivery_moment":"2022-11-04T11:59:13+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.73287062",
+ "p_number":"639174",
+ "active_group_size":"3",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1082736688",
+ "1082714734",
+ "1081769863"
+ ],
+ "group_id":"10:00_15:00_6241CG85",
+ "group_first":"true",
+ "group_sender_names":"AMAZON, BP・AMAZON",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667560230",
+ "finished":"true",
+ "full_address_for_navigation":"VLIEGENSTRAAT 85, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:10:30 +0100",
+ "group_pids":[
+ "JJD000090254011007817872",
+ "JJD000090254011007814771",
+ "JJD000090254011007795856"
+ ],
+ "group_task_index":"0",
+ "group_size":"3",
+ "parcel_id":"JJD000090254011007817872",
+ "lat":"50.89812691",
+ "eta":"11:59"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081769863",
+ "pid":"JJD000090254011007795856",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CG",
+ "street":"VLIEGENSTR",
+ "house_number":"85",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8981269207105",
+ "address_longitude":"5.73287053852896",
+ "customer_short_name":"AMAZON",
+ "product_type_description":"BP",
+ "delivery_sequence_number":"35",
+ "delivery_moment":"2022-11-04T11:59:13+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.73287062",
+ "p_number":"639174",
+ "active_group_size":"3",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1082736688",
+ "1082714734",
+ "1081769863"
+ ],
+ "group_id":"10:00_15:00_6241CG85",
+ "group_first":"false",
+ "group_sender_names":"AMAZON, BP・AMAZON",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667560230",
+ "finished":"true",
+ "full_address_for_navigation":"VLIEGENSTRAAT 85, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:10:30 +0100",
+ "group_pids":[
+ "JJD000090254011007817872",
+ "JJD000090254011007814771",
+ "JJD000090254011007795856"
+ ],
+ "group_task_index":"2",
+ "group_size":"3",
+ "parcel_id":"JJD000090254011007795856",
+ "lat":"50.89812691",
+ "eta":"11:59"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082714734",
+ "pid":"JJD000090254011007814771",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CG",
+ "street":"VLIEGENSTR",
+ "house_number":"85",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8981269207105",
+ "address_longitude":"5.73287053852896",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"36",
+ "delivery_moment":"2022-11-04T11:59:13+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.73287062",
+ "p_number":"639174",
+ "active_group_size":"3",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1082736688",
+ "1082714734",
+ "1081769863"
+ ],
+ "group_id":"10:00_15:00_6241CG85",
+ "group_first":"false",
+ "group_sender_names":"AMAZON, BP・AMAZON",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667560230",
+ "finished":"true",
+ "full_address_for_navigation":"VLIEGENSTRAAT 85, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:10:30 +0100",
+ "group_pids":[
+ "JJD000090254011007817872",
+ "JJD000090254011007814771",
+ "JJD000090254011007795856"
+ ],
+ "group_task_index":"1",
+ "group_size":"3",
+ "parcel_id":"JJD000090254011007814771",
+ "lat":"50.89812691",
+ "eta":"11:59"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081856717",
+ "pid":"JJD149070000003559837",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CG",
+ "street":"VLIEGENSTR",
+ "house_number":"99",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8985590568542",
+ "address_longitude":"5.73201324137696",
+ "customer_short_name":"ASOS",
+ "product_type_description":null,
+ "delivery_sequence_number":"37",
+ "delivery_moment":"2022-11-04T12:01:05+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD149070000003559837",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CG99",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89855905",
+ "lng":"5.73201332",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 99, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560313",
+ "finished_at":"2022-11-04 12:11:53 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:01"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083391569",
+ "pid":"JUN491599949120180763980",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CJ",
+ "street":"VLIEGENSTR",
+ "house_number":"98",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8984927611781",
+ "address_longitude":"5.73169747707195",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"38",
+ "delivery_moment":"2022-11-04T12:02:30+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JUN491599949120180763980",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CJ98",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89849276",
+ "lng":"5.73169756",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 98, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560361",
+ "finished_at":"2022-11-04 12:12:41 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:02"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083224059",
+ "pid":"3SDRG9533166737",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CM",
+ "street":"PLETSSTR",
+ "house_number":"33",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.8982971047334",
+ "address_longitude":"5.73084104170915",
+ "customer_short_name":"Drogist.nl",
+ "product_type_description":null,
+ "delivery_sequence_number":"39",
+ "delivery_moment":"2022-11-04T12:04:14+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SDRG9533166737",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CM33",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8982971",
+ "lng":"5.73084112",
+ "delivery_code":"",
+ "full_address_for_navigation":"PLETSSTRAAT 33, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560591",
+ "finished_at":"2022-11-04 12:16:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:04"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082940789",
+ "pid":"JVGL06253991001551753220",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CW",
+ "street":"ROGGEVELDSTR",
+ "house_number":"4",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8991160786136",
+ "address_longitude":"5.7322903094077",
+ "customer_short_name":"Efulfilment Europe BV - BetCity ",
+ "product_type_description":null,
+ "delivery_sequence_number":"40",
+ "delivery_moment":"2022-11-04T12:06:02+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06253991001551753220",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CW4",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89911607",
+ "lng":"5.73229039",
+ "delivery_code":"",
+ "full_address_for_navigation":"ROGGEVELDSTRAAT 4, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667560755",
+ "finished_at":"2022-11-04 12:19:15 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:06"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082541642",
+ "pid":"3SBHP007327477",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CT",
+ "street":"Pasweg",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9003022366732",
+ "address_longitude":"5.73211308864878",
+ "customer_short_name":"Bax Music",
+ "product_type_description":"VP",
+ "delivery_sequence_number":"41",
+ "delivery_moment":"2022-11-04T12:07:57+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"31",
+ "lng":"5.73211317",
+ "active_group_size":"1",
+ "timeframe":"10:00-15:00",
+ "group_parcel_keys":[
+
+ ],
+ "group_id":"10:00_15:00_6241CT8",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "intervention_data":{
+ "timeframeChange":{
+ "timeframe":{
+ "from":"2022-11-05T16:00:00.000+01:00",
+ "to":"2022-11-05T21:30:00.000+01:00"
+ }
+ },
+ "timestamp":"2022-11-04T06:07:49.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SBHP007327477",
+ "interventionId":"43577194",
+ "type":"to_later",
+ "parcelKey":"1082541642"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"PASWEG 8, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SBHP007327477",
+ "is_intervention":"true",
+ "lat":"50.90030223",
+ "eta":"12:07"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083265150",
+ "pid":"JUN491599949120180745907",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CT",
+ "street":"Pasweg",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.902757692779",
+ "address_longitude":"5.73236368133329",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"42",
+ "delivery_moment":"2022-11-04T12:09:47+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.73236376",
+ "p_number":"639174",
+ "active_group_size":"1",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083265150"
+ ],
+ "group_id":"10:00_15:00_6241CT21",
+ "group_first":"true",
+ "group_sender_names":"WEHKAMP,BOL.COM",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667560908",
+ "finished":"true",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Bij de voordeur, niet zichtbaar vanaf de straat",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T11:48:41.000+01:00",
+ "status":"PENDING",
+ "parcelId":"JUN491599949120180745907",
+ "interventionId":"43598292",
+ "type":"agreed_place",
+ "agreed_place_description":"Bij de voordeur, niet zichtbaar vanaf de straat"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"PASWEG 21, BUNDE",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:21:48 +0100",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "JUN491599949120180745907"
+ ],
+ "group_task_index":"0",
+ "calculated_group_pids":[
+
+ ],
+ "group_size":"1",
+ "parcel_id":"JUN491599949120180745907",
+ "is_intervention":"true",
+ "lat":"50.90275769",
+ "eta":"12:09"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082660410",
+ "pid":"3SBCS17399013",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CT",
+ "street":"Pasweg",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.902757692779",
+ "address_longitude":"5.73236368133329",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"43",
+ "delivery_moment":"2022-11-04T12:09:47+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.73236376",
+ "p_number":"639174",
+ "active_group_size":"2",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1083265150"
+ ],
+ "group_id":"10:00_15:00_6241CT21",
+ "group_sender_names":"WEHKAMP,BOL.COM",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667560877",
+ "finished":"true",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Bij de voordeur onzichtbaar vanaf de straat",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-03T19:26:53.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SBCS17399013",
+ "interventionId":"43562463",
+ "type":"agreed_place",
+ "agreed_place_description":"Bij de voordeur onzichtbaar vanaf de straat"
+ },
+ "full_address_for_navigation":"PASWEG 21, BUNDE",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:21:17 +0100",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "JUN491599949120180745907"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SBCS17399013",
+ "is_intervention":"true",
+ "lat":"50.90275769",
+ "eta":"12:09"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081848937",
+ "pid":"JJD149070000003558586",
+ "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":"ASOS",
+ "product_type_description":null,
+ "delivery_sequence_number":"44",
+ "delivery_moment":"2022-11-04T12:11:41+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD149070000003558586",
+ "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.90090468",
+ "lng":"5.73180494",
+ "delivery_code":"",
+ "full_address_for_navigation":"PASWEG 15, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667561103",
+ "finished_at":"2022-11-04 12:25:03 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:11"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1080605133",
+ "pid":"CR249914517DE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CT",
+ "street":"Pasweg",
+ "house_number":"14",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.9007590979252",
+ "address_longitude":"5.73173511095599",
+ "customer_short_name":"GUNTER HERKE",
+ "product_type_description":null,
+ "delivery_sequence_number":"45",
+ "delivery_moment":"2022-11-04T12:13:06+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"CR249914517DE",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CT14",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90075909",
+ "lng":"5.73173519",
+ "delivery_code":"",
+ "full_address_for_navigation":"PASWEG 14, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667561175",
+ "finished_at":"2022-11-04 12:26:15 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:13"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1079662803",
+ "pid":"3SHM00002940278",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CR",
+ "street":"BURCHTSTR",
+ "house_number":"17",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8980428376494",
+ "address_longitude":"5.72892040190772",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"46",
+ "delivery_moment":"2022-11-04T12:15:34+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00002940278",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CR17",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89804283",
+ "lng":"5.72892048",
+ "delivery_code":"",
+ "full_address_for_navigation":"BURCHTSTRAAT 17, BUNDE",
+ "eta":"12:15"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082279637",
+ "pid":"JJD000090254000019330990",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CR",
+ "street":"BURCHTSTR",
+ "house_number":"15",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8980073991726",
+ "address_longitude":"5.72883670385891",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"47",
+ "delivery_moment":"2022-11-04T12:16:59+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019330990",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CR15",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89800739",
+ "lng":"5.72883679",
+ "delivery_code":"",
+ "full_address_for_navigation":"BURCHTSTRAAT 15, BUNDE",
+ "eta":"12:16"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083240112",
+ "pid":"JUN491599949120180741899",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CR",
+ "street":"BURCHTSTR",
+ "house_number":"22",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8981356991572",
+ "address_longitude":"5.72955645597224",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"48",
+ "delivery_moment":"2022-11-04T12:18:30+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JUN491599949120180741899",
+ "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.89813569",
+ "lng":"5.72955654",
+ "delivery_code":"",
+ "full_address_for_navigation":"BURCHTSTRAAT 22, BUNDE",
+ "eta":"12:18"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082624341",
+ "pid":"JJD000090254000019338081",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CS",
+ "street":"HOFKESTR",
+ "house_number":"9",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8989687155332",
+ "address_longitude":"5.72909397597906",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"49",
+ "delivery_moment":"2022-11-04T12:20:12+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019338081",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CS9",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89896871",
+ "lng":"5.72909406",
+ "delivery_code":"",
+ "full_address_for_navigation":"HOFKESTRAAT 9, BUNDE",
+ "eta":"12:20"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083190709",
+ "pid":"JVGL40046213001669153749",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"HC",
+ "street":"T HOFKE",
+ "house_number":"7",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8992013083816",
+ "address_longitude":"5.72980570338052",
+ "customer_short_name":"Petgamma",
+ "product_type_description":null,
+ "delivery_sequence_number":"50",
+ "delivery_moment":"2022-11-04T12:21:58+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL40046213001669153749",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241HC7",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8992013",
+ "lng":"5.72980579",
+ "delivery_code":"",
+ "full_address_for_navigation":"'T HOFKE 7, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667561839",
+ "finished_at":"2022-11-04 12:37:19 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:21"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081856998",
+ "pid":"JJD149070000003559299",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"HC",
+ "street":"T HOFKE",
+ "house_number":"15",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8993290166492",
+ "address_longitude":"5.73029875244238",
+ "customer_short_name":"ASOS",
+ "product_type_description":null,
+ "delivery_sequence_number":"51",
+ "delivery_moment":"2022-11-04T12:23:30+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD149070000003559299",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241HC15",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89932901",
+ "lng":"5.73029883",
+ "delivery_code":"",
+ "full_address_for_navigation":"'T HOFKE 15, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667561703",
+ "finished_at":"2022-11-04 12:35:03 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:23"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081435761",
+ "pid":"3SPET9331161293",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CS",
+ "street":"HOFKESTR",
+ "house_number":"23",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8997293394027",
+ "address_longitude":"5.728489510329",
+ "customer_short_name":"Medpets.nl",
+ "product_type_description":null,
+ "delivery_sequence_number":"52",
+ "delivery_moment":"2022-11-04T12:25:54+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.72848959",
+ "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_6241CS23",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667561941",
+ "finished":"true",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Zet maar tegen de garage aan (daar staat het droog). Bedankt!",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-03T22:27:35.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SPET9331161293",
+ "interventionId":"43570348",
+ "type":"agreed_place",
+ "agreed_place_description":"Zet maar tegen de garage aan (daar staat het droog). Bedankt!"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"HOFKESTRAAT 23, BUNDE",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:39:01 +0100",
+ "group_pids":[
+
+ ],
+ "intervention_message_confirmed":"true",
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SPET9331161293",
+ "is_intervention":"true",
+ "lat":"50.89972933",
+ "eta":"12:25"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082982257",
+ "pid":"JVGL06035604000222279809",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NH",
+ "street":"POPELBOOMSWG",
+ "house_number":"1",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9104929203604",
+ "address_longitude":"5.73065542243298",
+ "customer_short_name":"Glazenmagazijn.nl - -",
+ "product_type_description":null,
+ "delivery_sequence_number":"53",
+ "delivery_moment":"2022-11-04T12:30:24+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL06035604000222279809",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241NH1NBB",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL06035604000222279809",
+ "JVGL06035604000205643003"
+ ],
+ "group_parcel_keys":[
+ "1082982257",
+ "1082982254"
+ ],
+ "group_sender_names":"Glazenmagazijn.nl - -",
+ "lat":"50.91049291",
+ "lng":"5.7306555",
+ "delivery_code":"",
+ "full_address_for_navigation":"POPELBOOMSWEG 1, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667562219",
+ "finished_at":"2022-11-04 12:43:39 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082982254",
+ "pid":"JVGL06035604000205643003",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NH",
+ "street":"POPELBOOMSWG",
+ "house_number":"1",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9104929203604",
+ "address_longitude":"5.73065542243298",
+ "customer_short_name":"Glazenmagazijn.nl - -",
+ "product_type_description":null,
+ "delivery_sequence_number":"54",
+ "delivery_moment":"2022-11-04T12:30:24+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL06035604000205643003",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6241NH1NBB",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL06035604000222279809",
+ "JVGL06035604000205643003"
+ ],
+ "group_parcel_keys":[
+ "1082982257",
+ "1082982254"
+ ],
+ "group_sender_names":"Glazenmagazijn.nl - -",
+ "lat":"50.91049291",
+ "lng":"5.7306555",
+ "delivery_code":"",
+ "full_address_for_navigation":"POPELBOOMSWEG 1, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667562219",
+ "finished_at":"2022-11-04 12:43:39 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083179451",
+ "pid":"3SQLW852248187",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NK",
+ "street":"BONAERTSWG",
+ "house_number":"25",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.906149177364",
+ "address_longitude":"5.73106899123444",
+ "customer_short_name":"Joannes Store",
+ "product_type_description":null,
+ "delivery_sequence_number":"55",
+ "delivery_moment":"2022-11-04T12:33:10+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SQLW852248187",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NK25",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90614917",
+ "lng":"5.73106907",
+ "delivery_code":"",
+ "full_address_for_navigation":"BONAERTSWEG 25, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667562356",
+ "finished_at":"2022-11-04 12:45:56 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:33"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082087091",
+ "pid":"JVGL06892129001195273838",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"ND",
+ "street":"MEERSTR",
+ "house_number":"43",
+ "house_number_addition":"A",
+ "city":"BUNDE",
+ "address_latitude":"50.9026291",
+ "address_longitude":"5.725358",
+ "customer_short_name":"EN Motoren Nijmegen BV - Jimmy Gerrits",
+ "product_type_description":null,
+ "delivery_sequence_number":"56",
+ "delivery_moment":"2022-11-04T12:36:09+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"1",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL06892129001195273838",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241ND43ANBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90264096",
+ "lng":"5.72525759",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEERSTRAAT 43, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667562677",
+ "finished_at":"2022-11-04 12:51:17 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:36"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082852817",
+ "pid":"3STMV9267838",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"ND",
+ "street":"MEERSTR",
+ "house_number":"46",
+ "house_number_addition":"A",
+ "city":"BUNDE",
+ "address_latitude":"50.9022675808291",
+ "address_longitude":"5.72399174994258",
+ "customer_short_name":"THOM SALES",
+ "product_type_description":null,
+ "delivery_sequence_number":"57",
+ "delivery_moment":"2022-11-04T12:37:44+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3STMV9267838",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241ND46A",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.9021041",
+ "lng":"5.72438099",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEERSTRAAT 46, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667562762",
+ "finished_at":"2022-11-04 12:52:42 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:37"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081239211",
+ "pid":"3SHM00003011321",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"ND",
+ "street":"MEERSTR",
+ "house_number":"26",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9006423198708",
+ "address_longitude":"5.72330755434345",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"58",
+ "delivery_moment":"2022-11-04T12:39:24+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00003011321",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241ND26",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+ "3SHM00003011321"
+ ],
+ "group_parcel_keys":[
+ "1081239211"
+ ],
+ "group_sender_names":"H&M,AMAZON",
+ "lat":"50.90064231",
+ "lng":"5.72330764",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEERSTRAAT 26, BUNDE",
+ "calculated_group_pids":[
+
+ ],
+ "finished":"true",
+ "finished_at_timestamp":"1667562955",
+ "finished_at":"2022-11-04 12:55:55 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:39"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082626314",
+ "pid":"JJD000090254011007812799",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"ND",
+ "street":"MEERSTR",
+ "house_number":"26",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.9006423198708",
+ "address_longitude":"5.72330755434345",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"59",
+ "delivery_moment":"2022-11-04T12:39:24+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.72330764",
+ "p_number":"639174",
+ "active_group_size":"2",
+ "timeframe":"10:00-15:00",
+ "device_name":"Honeywell CT60",
+ "group_parcel_keys":[
+ "1081239211"
+ ],
+ "group_id":"10:00_15:00_6241ND26",
+ "group_sender_names":"H&M,AMAZON",
+ "delivery_code":"",
+ "finished_at_timestamp":"1667562931",
+ "finished":"true",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Mag achterom gelegt worden op de trapjes",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-03T17:53:08.000+01:00",
+ "status":"PENDING",
+ "parcelId":"JJD000090254011007812799",
+ "interventionId":"43557429",
+ "type":"agreed_place",
+ "agreed_place_description":"Mag achterom gelegt worden op de trapjes"
+ },
+ "full_address_for_navigation":"MEERSTRAAT 26, BUNDE",
+ "scanned_in_trip":"true",
+ "finished_at":"2022-11-04 12:55:31 +0100",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SHM00003011321"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"JJD000090254011007812799",
+ "is_intervention":"true",
+ "lat":"50.90064231",
+ "eta":"12:39"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439181",
+ "pid":"JVGL0761706140464127",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NC",
+ "street":"MEERSTR",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8995185506611",
+ "address_longitude":"5.72262064722078",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"60",
+ "delivery_moment":"2022-11-04T12:41:11+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"22",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL0761706140464127",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NC8NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89951854",
+ "lng":"5.72262073",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEERSTRAAT 8, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563054",
+ "finished_at":"2022-11-04 12:57:34 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:41"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083384386",
+ "pid":"JUN491599949120180750272",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NG",
+ "street":"HOEKERWG",
+ "house_number":"7",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8991159499517",
+ "address_longitude":"5.72010649332272",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"61",
+ "delivery_moment":"2022-11-04T12:43:00+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JUN491599949120180750272",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NG7",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89911594",
+ "lng":"5.72010658",
+ "delivery_code":"",
+ "full_address_for_navigation":"HOEKERWEG 7, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563231",
+ "finished_at":"2022-11-04 13:00:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:43"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082007160",
+ "pid":"JJD000090254000019312142",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NA",
+ "street":"GEULSTR",
+ "house_number":"50",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8974600946831",
+ "address_longitude":"5.72407770547119",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"62",
+ "delivery_moment":"2022-11-04T12:45:07+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019312142",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NA50",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89746009",
+ "lng":"5.72407779",
+ "delivery_code":"",
+ "full_address_for_navigation":"GEULSTRAAT 50, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563327",
+ "finished_at":"2022-11-04 13:02:07 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:45"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082627114",
+ "pid":"JJD000090254011007807998",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NA",
+ "street":"GEULSTR",
+ "house_number":"24",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8976486554085",
+ "address_longitude":"5.72663814893031",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"63",
+ "delivery_moment":"2022-11-04T12:47:03+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254011007807998",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NA24",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89764865",
+ "lng":"5.72663823",
+ "delivery_code":"",
+ "full_address_for_navigation":"GEULSTRAAT 24, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563397",
+ "finished_at":"2022-11-04 13:03:17 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:47"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081237961",
+ "pid":"3SHM00003007764",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CR",
+ "street":"BURCHTSTR",
+ "house_number":"1",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.897195553501",
+ "address_longitude":"5.72788279208958",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"64",
+ "delivery_moment":"2022-11-04T12:48:54+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00003007764",
+ "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.89719555",
+ "lng":"5.72788287",
+ "delivery_code":"",
+ "full_address_for_navigation":"BURCHTSTRAAT 1, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563465",
+ "finished_at":"2022-11-04 13:04:25 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:48"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082192683",
+ "pid":"3SABCM104027363",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JH",
+ "street":"GRAVENSTEINSTR",
+ "house_number":"7",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8959845392392",
+ "address_longitude":"5.72535298669812",
+ "customer_short_name":"WhistlParcels",
+ "product_type_description":null,
+ "delivery_sequence_number":"65",
+ "delivery_moment":"2022-11-04T12:51:18+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SABCM104027363",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JH7",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89598453",
+ "lng":"5.72535307",
+ "delivery_code":"",
+ "full_address_for_navigation":"GRAVENSTEINSTRAAT 7, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563592",
+ "finished_at":"2022-11-04 13:06:32 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:51"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082302858",
+ "pid":"3SDRG9802586343",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JP",
+ "street":"COURT PENDUSTR",
+ "house_number":"46",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.8959022924456",
+ "address_longitude":"5.72341012968776",
+ "customer_short_name":"Drogist.nl",
+ "product_type_description":null,
+ "delivery_sequence_number":"66",
+ "delivery_moment":"2022-11-04T12:53:22+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SDRG9802586343",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JP46",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89590229",
+ "lng":"5.72341021",
+ "delivery_code":"",
+ "full_address_for_navigation":"COURT-PENDUSTRAAT 46, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563694",
+ "finished_at":"2022-11-04 13:08:14 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:53"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082395732",
+ "pid":"3SZAL020032809",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JP",
+ "street":"COURT PENDUSTR",
+ "house_number":"41",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8955410953774",
+ "address_longitude":"5.72344971781496",
+ "customer_short_name":"ZALANDO SE",
+ "product_type_description":null,
+ "delivery_sequence_number":"67",
+ "delivery_moment":"2022-11-04T12:54:52+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SZAL020032809",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JP41",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89554109",
+ "lng":"5.7234498",
+ "delivery_code":"",
+ "full_address_for_navigation":"COURT-PENDUSTRAAT 41, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563755",
+ "finished_at":"2022-11-04 13:09:15 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:54"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083094469",
+ "pid":"3SDGB109921181",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JP",
+ "street":"COURT PENDUSTR",
+ "house_number":"27",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8947483990425",
+ "address_longitude":"5.72458142274409",
+ "customer_short_name":"DOUGLAS",
+ "product_type_description":null,
+ "delivery_sequence_number":"68",
+ "delivery_moment":"2022-11-04T12:56:35+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SDGB109921181",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JP27",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89474839",
+ "lng":"5.72458151",
+ "delivery_code":"",
+ "full_address_for_navigation":"COURT-PENDUSTRAAT 27, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563831",
+ "finished_at":"2022-11-04 13:10:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:56"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083338301",
+ "pid":"3SDGB109926337",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JP",
+ "street":"COURT PENDUSTR",
+ "house_number":"28",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8948760177892",
+ "address_longitude":"5.7248664722922",
+ "customer_short_name":"DOUGLAS",
+ "product_type_description":null,
+ "delivery_sequence_number":"69",
+ "delivery_moment":"2022-11-04T12:58:00+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"10",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SDGB109926337",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JP28",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89487601",
+ "lng":"5.72486655",
+ "delivery_code":"",
+ "full_address_for_navigation":"COURT-PENDUSTRAAT 28, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667563963",
+ "finished_at":"2022-11-04 13:12:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"12:58"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082770506",
+ "pid":"3SZAE000125275",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JP",
+ "street":"COURT PENDUSTR",
+ "house_number":"5",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8937688083107",
+ "address_longitude":"5.72602184265144",
+ "customer_short_name":"ZALANDO",
+ "product_type_description":null,
+ "delivery_sequence_number":"70",
+ "delivery_moment":"2022-11-04T12:59:47+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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.72602192",
+ "active_group_size":"1",
+ "timeframe":"10:00-15:00",
+ "group_parcel_keys":[
+
+ ],
+ "group_id":"10:00_15:00_6241JP5",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "intervention_data":{
+ "servicePointDelivery":{
+ "servicePointId":"NL-624101"
+ },
+ "timestamp":"2022-11-04T07:06:47.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SZAE000125275",
+ "interventionId":"43579836",
+ "type":"to_sp",
+ "parcelKey":"1082770506"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"COURT-PENDUSTRAAT 5, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SZAE000125275",
+ "is_intervention":"true",
+ "lat":"50.8937688",
+ "eta":"12:59"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082625663",
+ "pid":"JJD000090254000019348732",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JB",
+ "street":"MAASTRICHTERLN",
+ "house_number":"80",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8943384890693",
+ "address_longitude":"5.72747189165303",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"71",
+ "delivery_moment":"2022-11-04T13:01:31+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019348732",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JB80",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89433848",
+ "lng":"5.72747197",
+ "delivery_code":"",
+ "full_address_for_navigation":"MAASTRICHTERLAAN 80, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564092",
+ "finished_at":"2022-11-04 13:14:52 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:01"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082740181",
+ "pid":"JVGL06059703001118335212",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JL",
+ "street":"STERAPPELSTR",
+ "house_number":"9",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8942957762841",
+ "address_longitude":"5.72659009532624",
+ "customer_short_name":" Gezamenlijk Voordeel B.V.",
+ "product_type_description":null,
+ "delivery_sequence_number":"72",
+ "delivery_moment":"2022-11-04T13:03:07+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL06059703001118335212",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JL9",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89429577",
+ "lng":"5.72659018",
+ "delivery_code":"",
+ "full_address_for_navigation":"STERAPPELSTRAAT 9, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564305",
+ "finished_at":"2022-11-04 13:18:25 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:03"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083036929",
+ "pid":"3SNCT0003287594",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JN",
+ "street":"ST REMYSTR",
+ "house_number":"34",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8946610155633",
+ "address_longitude":"5.72566225109811",
+ "customer_short_name":"Jeans Centre",
+ "product_type_description":null,
+ "delivery_sequence_number":"73",
+ "delivery_moment":"2022-11-04T13:04:52+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SNCT0003287594",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JN34",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89466101",
+ "lng":"5.72566233",
+ "delivery_code":"",
+ "full_address_for_navigation":"SAINT REMYSTRAAT 34, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564228",
+ "finished_at":"2022-11-04 13:17:08 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:04"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081115937",
+ "pid":"3SQLW847109080",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JE",
+ "street":"IN DE BONGERD",
+ "house_number":"27",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8953160655284",
+ "address_longitude":"5.72571252609071",
+ "customer_short_name":"Most Wanted Luxury",
+ "product_type_description":null,
+ "delivery_sequence_number":"74",
+ "delivery_moment":"2022-11-04T13:06:43+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SQLW847109080",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JE27",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89531606",
+ "lng":"5.72571261",
+ "delivery_code":"",
+ "full_address_for_navigation":"IN DE BONGERD 27, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564516",
+ "finished_at":"2022-11-04 13:21:56 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:06"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081038289",
+ "pid":"3SZLE000969189",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JE",
+ "street":"IN DE BONGERD",
+ "house_number":"1",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8957668277061",
+ "address_longitude":"5.72648917148401",
+ "customer_short_name":"ZALANDO",
+ "product_type_description":null,
+ "delivery_sequence_number":"75",
+ "delivery_moment":"2022-11-04T13:08:21+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SZLE000969189",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JE1",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89576682",
+ "lng":"5.72648925",
+ "delivery_code":"",
+ "full_address_for_navigation":"IN DE BONGERD 1, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564633",
+ "finished_at":"2022-11-04 13:23:53 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:08"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083396367",
+ "pid":"JVGL40044188001055809998",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JD",
+ "street":"BELLEFLEURSTR",
+ "house_number":"12",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8960586737445",
+ "address_longitude":"5.72664979162446",
+ "customer_short_name":"Bme Bvba",
+ "product_type_description":null,
+ "delivery_sequence_number":"76",
+ "delivery_moment":"2022-11-04T13:09:54+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL40044188001055809998",
+ "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.89605867",
+ "lng":"5.72664987",
+ "delivery_code":"",
+ "full_address_for_navigation":"BELLEFLEURSTRAAT 12, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564689",
+ "finished_at":"2022-11-04 13:24:49 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:09"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439245",
+ "pid":"JVGL061341914112901",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JM",
+ "street":"ST REMYSTR",
+ "house_number":"5",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8952059080039",
+ "address_longitude":"5.72710674048817",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"77",
+ "delivery_moment":"2022-11-04T13:11:45+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"10",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL061341914112901",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JM5NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8952059",
+ "lng":"5.72710682",
+ "delivery_code":"",
+ "full_address_for_navigation":"SAINT REMYSTRAAT 5, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564803",
+ "finished_at":"2022-11-04 13:26:43 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:11"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082852761",
+ "pid":"3SBCS17401812",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JA",
+ "street":"MAASTRICHTERLN",
+ "house_number":"38",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8952323863152",
+ "address_longitude":"5.72788368408531",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"78",
+ "delivery_moment":"2022-11-04T13:13:36+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SBCS17401812",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JA38",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89523238",
+ "lng":"5.72788377",
+ "delivery_code":"",
+ "full_address_for_navigation":"MAASTRICHTERLAAN 38, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564880",
+ "finished_at":"2022-11-04 13:28:00 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:13"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082281813",
+ "pid":"JJD000090254000019333902",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JC",
+ "street":"KLUMPKESTR",
+ "house_number":"9",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8963008254082",
+ "address_longitude":"5.72723389507426",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"79",
+ "delivery_moment":"2022-11-04T13:15:36+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019333902",
+ "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.89630082",
+ "lng":"5.72723398",
+ "delivery_code":"",
+ "full_address_for_navigation":"KLUMPKESTRAAT 9, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667564997",
+ "finished_at":"2022-11-04 13:29:57 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:15"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083269136",
+ "pid":"00008869154298842680",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JA",
+ "street":"MAASTRICHTERLN",
+ "house_number":"26",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8956996852189",
+ "address_longitude":"5.72810785820969",
+ "customer_short_name":"Nike",
+ "product_type_description":null,
+ "delivery_sequence_number":"80",
+ "delivery_moment":"2022-11-04T13:17:24+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"00008869154298842680",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JA26",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89569968",
+ "lng":"5.72810794",
+ "delivery_code":"",
+ "full_address_for_navigation":"MAASTRICHTERLAAN 26, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667565165",
+ "finished_at":"2022-11-04 13:32:45 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:17"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082388595",
+ "pid":"CB260521375DE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JA",
+ "street":"MAASTRICHTERLN",
+ "house_number":"50",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8948559788545",
+ "address_longitude":"5.72771561430483",
+ "customer_short_name":"GERRY WEBER RETAIL GMBH",
+ "product_type_description":null,
+ "delivery_sequence_number":"81",
+ "delivery_moment":"2022-11-04T13:19:03+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"10",
+ "scanned_in_trip":"true",
+ "parcel_id":"CB260521375DE",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JA50",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89485597",
+ "lng":"5.7277157",
+ "delivery_code":"",
+ "full_address_for_navigation":"MAASTRICHTERLAAN 50, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667565309",
+ "finished_at":"2022-11-04 13:35:09 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:19"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1080964527",
+ "pid":"CH635332469DE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"JA",
+ "street":"MAASTRICHTERLN",
+ "house_number":"14",
+ "house_number_addition":".",
+ "city":"BUNDE",
+ "address_latitude":"50.8964479914013",
+ "address_longitude":"5.72866158895896",
+ "customer_short_name":"Zalando c/o Mayer Logistikservice G",
+ "product_type_description":null,
+ "delivery_sequence_number":"82",
+ "delivery_moment":"2022-11-04T13:20:53+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"CH635332469DE",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241JA14.",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89644799",
+ "lng":"5.72866167",
+ "delivery_code":"",
+ "full_address_for_navigation":"MAASTRICHTERLAAN 14, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667565422",
+ "finished_at":"2022-11-04 13:37:02 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:20"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081844789",
+ "pid":"JJD000090254000019317306",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BP",
+ "street":"Meidoornlaan",
+ "house_number":"28",
+ "house_number_addition":null,
+ "city":"Meerssen",
+ "address_latitude":"50.8956678642899",
+ "address_longitude":"5.72926486990249",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"83",
+ "delivery_moment":"2022-11-04T13:22:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD000090254000019317306",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BP28",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89566786",
+ "lng":"5.72926495",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEIDOORNLAAN 28, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667565511",
+ "finished_at":"2022-11-04 13:38:31 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082966835",
+ "pid":"JJD0000900602016880485646",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BP",
+ "street":"MEIDOORNLN",
+ "house_number":"16",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.895165655345",
+ "address_longitude":"5.73069099799191",
+ "customer_short_name":"Pure Paardenvoeding & Advies",
+ "product_type_description":null,
+ "delivery_sequence_number":"84",
+ "delivery_moment":"2022-11-04T13:24:29+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JJD0000900602016880485646",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BP16",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89516565",
+ "lng":"5.73069108",
+ "delivery_code":"",
+ "full_address_for_navigation":"MEIDOORNLAAN 16, BUNDE",
+ "finished":"true",
+ "finished_at_timestamp":"1667565630",
+ "finished_at":"2022-11-04 13:40:30 +0100",
+ "p_number":"639174",
+ "device_name":"Honeywell CT60",
+ "eta":"13:24"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082627907",
+ "pid":"JJD000090254000019343727",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BE",
+ "street":"LINDENLN",
+ "house_number":"90",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8941058288789",
+ "address_longitude":"5.72924905581346",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"85",
+ "delivery_moment":"2022-11-04T14:00:00+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"JJD000090254000019343727",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241BE90",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89410582",
+ "lng":"5.72924914",
+ "delivery_code":"",
+ "full_address_for_navigation":"LINDENLAAN 90, BUNDE",
+ "eta":"14:00"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081970544",
+ "pid":"3SHM00003042696",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AM",
+ "street":"BEUKENLN",
+ "house_number":"84",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8934198054653",
+ "address_longitude":"5.72912559248998",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"86",
+ "delivery_moment":"2022-11-04T14:02:01+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SHM00003042696",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AM84",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8934198",
+ "lng":"5.72912567",
+ "delivery_code":"",
+ "full_address_for_navigation":"BEUKENLAAN 84, BUNDE",
+ "eta":"14:02"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082739625",
+ "pid":"3SZAL020039247",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AJ",
+ "street":"BEUKENLN",
+ "house_number":"79",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.893134595703",
+ "address_longitude":"5.73073106197918",
+ "customer_short_name":"ZALANDO SE",
+ "product_type_description":null,
+ "delivery_sequence_number":"87",
+ "delivery_moment":"2022-11-04T14:03:43+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SZAL020039247",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AJ79",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89313459",
+ "lng":"5.73073114",
+ "delivery_code":"",
+ "full_address_for_navigation":"BEUKENLAAN 79, BUNDE",
+ "eta":"14:03"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082819044",
+ "pid":"JVGL05098926001865785268",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BD",
+ "street":"LINDENLN",
+ "house_number":"48",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8926085140401",
+ "address_longitude":"5.73301136500711",
+ "customer_short_name":"Trim Nederland BV - ",
+ "product_type_description":null,
+ "delivery_sequence_number":"88",
+ "delivery_moment":"2022-11-04T14:05:48+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"ma",
+ "parcel_status_key":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL05098926001865785268",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241BD48NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89260851",
+ "lng":"5.73301145",
+ "delivery_code":"",
+ "full_address_for_navigation":"LINDENLAAN 48, BUNDE",
+ "eta":"14:05"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082540042",
+ "pid":"CF811980671DE",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BG",
+ "street":"EIKENLN",
+ "house_number":"17",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8933391392921",
+ "address_longitude":"5.73342813853717",
+ "customer_short_name":"Return address Return address",
+ "product_type_description":null,
+ "delivery_sequence_number":"89",
+ "delivery_moment":"2022-11-04T14:07:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"CF811980671DE",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241BG17",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89333913",
+ "lng":"5.73342822",
+ "delivery_code":"",
+ "full_address_for_navigation":"EIKENLAAN 17, BUNDE",
+ "eta":"14:07"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082744450",
+ "pid":"3SHM00003057786",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AX",
+ "street":"PRUNISLN",
+ "house_number":"1",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8936665149397",
+ "address_longitude":"5.73426728915609",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"90",
+ "delivery_moment":"2022-11-04T14:09:03+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SHM00003057786",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AX1",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89366651",
+ "lng":"5.73426737",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRUNISLAAN 1, BUNDE",
+ "eta":"14:09"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083175812",
+ "pid":"3SBCS17409854",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BW",
+ "street":"PAPENWG",
+ "house_number":"68",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8946467963839",
+ "address_longitude":"5.73386189873096",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"91",
+ "delivery_moment":"2022-11-04T14:10:59+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SBCS17409854",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BW68",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89464679",
+ "lng":"5.73386198",
+ "delivery_code":"",
+ "full_address_for_navigation":"PAPENWEG 68, BUNDE",
+ "eta":"14:10"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082644173",
+ "pid":"3SJBS000442883",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BS",
+ "street":"PAPENWG",
+ "house_number":"55",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8949433223372",
+ "address_longitude":"5.73266567461509",
+ "customer_short_name":"Justbrands",
+ "product_type_description":null,
+ "delivery_sequence_number":"92",
+ "delivery_moment":"2022-11-04T14:12:37+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SJBS000442883",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BS55",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89494332",
+ "lng":"5.73266576",
+ "delivery_code":"",
+ "full_address_for_navigation":"PAPENWEG 55, BUNDE",
+ "eta":"14:12"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082607881",
+ "pid":"3SDGB109919217",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BT",
+ "street":"PAPENWG",
+ "house_number":"91",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.893944985478",
+ "address_longitude":"5.73492700303461",
+ "customer_short_name":"DOUGLAS",
+ "product_type_description":null,
+ "delivery_sequence_number":"93",
+ "delivery_moment":"2022-11-04T14:14:31+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SDGB109919217",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BT91",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89394498",
+ "lng":"5.73492709",
+ "delivery_code":"",
+ "full_address_for_navigation":"PAPENWEG 91, BUNDE",
+ "eta":"14:14"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083292588",
+ "pid":"3SMML0001566205",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BW",
+ "street":"Papenweg",
+ "house_number":"86",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8940554789613",
+ "address_longitude":"5.73509952420342",
+ "customer_short_name":"MAMALOES",
+ "product_type_description":null,
+ "delivery_sequence_number":"94",
+ "delivery_moment":"2022-11-04T14:15:56+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"31",
+ "lng":"5.73509961",
+ "active_group_size":"1",
+ "timeframe":"10:00-15:00",
+ "group_parcel_keys":[
+
+ ],
+ "group_id":"10:00_15:00_6241BW86",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "intervention_data":{
+ "servicePointDelivery":{
+ "servicePointId":"NL-624101"
+ },
+ "timestamp":"2022-11-04T11:26:18.000+01:00",
+ "status":"PENDING",
+ "parcelId":"3SMML0001566205",
+ "interventionId":"43595987",
+ "type":"to_sp",
+ "parcelKey":"1083292588"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"PAPENWEG 86, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SMML0001566205",
+ "is_intervention":"true",
+ "lat":"50.89405547",
+ "eta":"14:15"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083188958",
+ "pid":"3SBCS17413116",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BT",
+ "street":"PAPENWG",
+ "house_number":"101",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8936467346351",
+ "address_longitude":"5.73558437146036",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"95",
+ "delivery_moment":"2022-11-04T14:17:29+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SBCS17413116",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241BT101",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89364673",
+ "lng":"5.73558445",
+ "delivery_code":"",
+ "full_address_for_navigation":"PAPENWEG 101, BUNDE",
+ "eta":"14:17"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083061424",
+ "pid":"JVGL05927660000427629405",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CE",
+ "street":"VLIEGENSTR",
+ "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":"97",
+ "delivery_moment":"2022-11-04T14:19:35+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL05927660000427629405",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241CE1NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89429529",
+ "lng":"5.73679999",
+ "delivery_code":"",
+ "full_address_for_navigation":"VLIEGENSTRAAT 1, BUNDE",
+ "eta":"14:19"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082852117",
+ "pid":"JVGL05707328001936636571",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"EZ",
+ "street":"KON JULIANASTR",
+ "house_number":"6",
+ "house_number_addition":"A",
+ "city":"BUNDE",
+ "address_latitude":"50.8937565255845",
+ "address_longitude":"5.7388097779107",
+ "customer_short_name":"Vivisol Nederland BV - Reconditionering ",
+ "product_type_description":null,
+ "delivery_sequence_number":"98",
+ "delivery_moment":"2022-11-04T14:21:30+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JVGL05707328001936636571",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241EZ6A",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89366077",
+ "lng":"5.73866956",
+ "delivery_code":"",
+ "full_address_for_navigation":"KONINGIN JULIANASTRAAT 6, BUNDE",
+ "eta":"14:21"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083357582",
+ "pid":"00008869154299140136",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GG",
+ "street":"PR J FRISOLN",
+ "house_number":"10",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8928564946881",
+ "address_longitude":"5.73874310305238",
+ "customer_short_name":"Nike",
+ "product_type_description":null,
+ "delivery_sequence_number":"99",
+ "delivery_moment":"2022-11-04T14:23:46+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"00008869154299140136",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GG10",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89285649",
+ "lng":"5.73874319",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINS JOHAN FRISOLAAN 10, BUNDE",
+ "eta":"14:23"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082731858",
+ "pid":"JVGL0596167700778977",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GL",
+ "street":"PR W ALEXANDERLN",
+ "house_number":"22",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892679358781",
+ "address_longitude":"5.7382286901121",
+ "customer_short_name":"Mona",
+ "product_type_description":null,
+ "delivery_sequence_number":"100",
+ "delivery_moment":"2022-11-04T14:25:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"za",
+ "parcel_status_key":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL0596167700778977",
+ "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.89267935",
+ "lng":"5.73822877",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINS WILLEM ALEXANDERLAAN 22, BUNDE",
+ "eta":"14:25"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083043218",
+ "pid":"3SHEM2690194201",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GJ",
+ "street":"PR CLAUSLN",
+ "house_number":"40",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8920418131345",
+ "address_longitude":"5.73904588543477",
+ "customer_short_name":"HEMA",
+ "product_type_description":null,
+ "delivery_sequence_number":"101",
+ "delivery_moment":"2022-11-04T14:27:12+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHEM2690194201",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GJ40",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89204181",
+ "lng":"5.73904597",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINS CLAUSLAAN 40, BUNDE",
+ "eta":"14:27"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082963931",
+ "pid":"3SMPK11630354",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GP",
+ "street":"HOOLHUIS",
+ "house_number":"4",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8922750795399",
+ "address_longitude":"5.74131181414136",
+ "customer_short_name":"iBOOD",
+ "product_type_description":null,
+ "delivery_sequence_number":"102",
+ "delivery_moment":"2022-11-04T14:29:13+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SMPK11630354",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GP4",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89227507",
+ "lng":"5.7413119",
+ "delivery_code":"",
+ "full_address_for_navigation":"HOOLHUIS 4, BUNDE",
+ "eta":"14:29"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083279675",
+ "pid":"3SDGB109924498",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GE",
+ "street":"PR IRENEWG",
+ "house_number":"4",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8911240026165",
+ "address_longitude":"5.74094770620317",
+ "customer_short_name":"DOUGLAS",
+ "product_type_description":null,
+ "delivery_sequence_number":"103",
+ "delivery_moment":"2022-11-04T14:30:57+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SDGB109924498",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GE4",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.891124",
+ "lng":"5.74094779",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINSES IRENEWEG 4, BUNDE",
+ "eta":"14:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081057300",
+ "pid":"3SHM00003020768",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GE",
+ "street":"PR IRENEWG",
+ "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":"104",
+ "delivery_moment":"2022-11-04T14:32:22+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SHM00003020768",
+ "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":[
+ "3SHM00003010754",
+ "3SHM00003020768"
+ ],
+ "group_parcel_keys":[
+ "1081239448",
+ "1081057300"
+ ],
+ "group_sender_names":"H&M",
+ "lat":"50.89095875",
+ "lng":"5.74095704",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINSES IRENEWEG 2, BUNDE",
+ "eta":"14:32"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1081239448",
+ "pid":"3SHM00003010754",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GE",
+ "street":"PR IRENEWG",
+ "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":"105",
+ "delivery_moment":"2022-11-04T14:32:22+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SHM00003010754",
+ "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":[
+ "3SHM00003010754",
+ "3SHM00003020768"
+ ],
+ "group_parcel_keys":[
+ "1081239448",
+ "1081057300"
+ ],
+ "group_sender_names":"H&M",
+ "lat":"50.89095875",
+ "lng":"5.74095704",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINSES IRENEWEG 2, BUNDE",
+ "eta":"14:32"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083155525",
+ "pid":"JUN491599949120180729720",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GL",
+ "street":"PR W ALEXANDERLN",
+ "house_number":"6",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8908048906349",
+ "address_longitude":"5.73879843094573",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"106",
+ "delivery_moment":"2022-11-04T14:34:37+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"JUN491599949120180729720",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GL6",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89080488",
+ "lng":"5.73879851",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINS WILLEM ALEXANDERLAAN 6, BUNDE",
+ "eta":"14:34"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083296404",
+ "pid":"3SNCS005025639",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GK",
+ "street":"PR CLAUSLN",
+ "house_number":"15",
+ "house_number_addition":"A",
+ "city":"BUNDE",
+ "address_latitude":"50.8911794618354",
+ "address_longitude":"5.7398593550057",
+ "customer_short_name":"Nelson Schoenen",
+ "product_type_description":null,
+ "delivery_sequence_number":"107",
+ "delivery_moment":"2022-11-04T14:36:50+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SNCS005025639",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GK15A",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89112342",
+ "lng":"5.73990051",
+ "delivery_code":"",
+ "full_address_for_navigation":"PRINS CLAUSLAAN 15, BUNDE",
+ "eta":"14:36"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083375815",
+ "pid":"3SJBS000443355",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GB",
+ "street":"KLOOSTERWG",
+ "house_number":"6",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8933309380144",
+ "address_longitude":"5.740038063395",
+ "customer_short_name":"Justbrands",
+ "product_type_description":null,
+ "delivery_sequence_number":"108",
+ "delivery_moment":"2022-11-04T14:38:57+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SJBS000443355",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GB6",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89333093",
+ "lng":"5.74003815",
+ "delivery_code":"",
+ "full_address_for_navigation":"KLOOSTERWEG 6, BUNDE",
+ "eta":"14:38"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083310965",
+ "pid":"00991011282204818095",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"GC",
+ "street":"HUIZE OVERBUNDE",
+ "house_number":"6",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8979482630772",
+ "address_longitude":"5.7411198602237",
+ "customer_short_name":"Footlocker",
+ "product_type_description":null,
+ "delivery_sequence_number":"109",
+ "delivery_moment":"2022-11-04T14:41:56+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"00991011282204818095",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241GC6",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89794826",
+ "lng":"5.74111994",
+ "delivery_code":"",
+ "full_address_for_navigation":"HUIZE OVERBUNDE 6, BUNDE",
+ "eta":"14:41"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082955457",
+ "pid":"3SETR0300190606",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NN",
+ "street":"DENNENBERG",
+ "house_number":"4",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.902622621683",
+ "address_longitude":"5.74573982351735",
+ "customer_short_name":"Etrias",
+ "product_type_description":null,
+ "delivery_sequence_number":"110",
+ "delivery_moment":"2022-11-04T14:45:44+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"3SETR0300190606",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"10:00_15:00_6241NN4",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.90262262",
+ "lng":"5.74573991",
+ "delivery_code":"",
+ "full_address_for_navigation":"DENNENBERG 4, BUNDE",
+ "eta":"14:45"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083446177",
+ "pid":"JVGL0580783929632518",
+ "postal_code_numeric":"6199",
+ "postal_code_alpha":"AA",
+ "street":"AUSTRALIELN",
+ "house_number":"30",
+ "house_number_addition":null,
+ "city":"MAASTRICHT AIRPORT",
+ "address_latitude":"50.9236482966063",
+ "address_longitude":"5.77639269186592",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"111",
+ "delivery_moment":"2022-11-04T14:54:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL0580783929632518",
+ "timeframe":"10:00-15:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6199AA30NBB",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL0580783929632518",
+ "JVGL50739118484339"
+ ],
+ "group_parcel_keys":[
+ "1083446177",
+ "1083446145"
+ ],
+ "group_sender_names":"EUROPLUS",
+ "lat":"50.92364829",
+ "lng":"5.77639277",
+ "delivery_code":"",
+ "full_address_for_navigation":"AUSTRALIELAAN 30, MAASTRICHT-AIRPORT",
+ "eta":"14:54"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083446145",
+ "pid":"JVGL50739118484339",
+ "postal_code_numeric":"6199",
+ "postal_code_alpha":"AA",
+ "street":"AUSTRALIELN",
+ "house_number":"30",
+ "house_number_addition":null,
+ "city":"MAASTRICHT AIRPORT",
+ "address_latitude":"50.9236482966063",
+ "address_longitude":"5.77639269186592",
+ "customer_short_name":"EUROPLUS",
+ "product_type_description":null,
+ "delivery_sequence_number":"112",
+ "delivery_moment":"2022-11-04T14:54:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T10:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T15: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":"ma",
+ "parcel_status_key":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL50739118484339",
+ "timeframe":"10:00-15:00",
+ "group_first":"false",
+ "group_task_index":"1",
+ "grouped":"true",
+ "group_id":"10:00_15:00_6199AA30NBB",
+ "group_size":"2",
+ "active_group_size":"2",
+ "group_pids":[
+ "JVGL0580783929632518",
+ "JVGL50739118484339"
+ ],
+ "group_parcel_keys":[
+ "1083446177",
+ "1083446145"
+ ],
+ "group_sender_names":"EUROPLUS",
+ "lat":"50.92364829",
+ "lng":"5.77639277",
+ "delivery_code":"",
+ "full_address_for_navigation":"AUSTRALIELAAN 30, MAASTRICHT-AIRPORT",
+ "eta":"14:54"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083446099",
+ "pid":"3SAFHMAA3990307227",
+ "postal_code_numeric":"6199",
+ "postal_code_alpha":"AA",
+ "street":"AUSTRALIELN",
+ "house_number":"30",
+ "house_number_addition":null,
+ "city":"MAASTRICHT AIRPORT",
+ "address_latitude":"50.9236482966063",
+ "address_longitude":"5.77639269186592",
+ "customer_short_name":"AFHALEN OP SERVICEPOINT",
+ "product_type_description":null,
+ "delivery_sequence_number":"113",
+ "delivery_moment":"2022-11-04T15:00:41+01: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":"Retour naar klant",
+ "parcel_status_key":"4",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SAFHMAA3990307227",
+ "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.92364829",
+ "lng":"5.77639277",
+ "delivery_code":"",
+ "full_address_for_navigation":"AUSTRALIELAAN 30, MAASTRICHT-AIRPORT",
+ "eta":"15:00"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083446096",
+ "pid":"3SAFHMAA3990333227",
+ "postal_code_numeric":"6199",
+ "postal_code_alpha":"AE",
+ "street":"AMERIKALN",
+ "house_number":"11",
+ "house_number_addition":null,
+ "city":"MAASTRICHT AIRPORT",
+ "address_latitude":"50.9250512736482",
+ "address_longitude":"5.78207239817298",
+ "customer_short_name":"AFHALEN OP SERVICEPOINT",
+ "product_type_description":null,
+ "delivery_sequence_number":"114",
+ "delivery_moment":"2022-11-04T15:03:06+01:00",
+ "begin_delivery_pickup_window":"1970-01-01T15:00:00+01:00",
+ "end_delivery_pickup_window":"1970-01-01T16: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":"4",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SAFHMAA3990333227",
+ "timeframe":"15:00-16:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"P_15:00_16:00_6199AE11",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.92505127",
+ "lng":"5.78207248",
+ "delivery_code":"",
+ "full_address_for_navigation":"AMERIKALAAN 11, MAASTRICHT-AIRPORT",
+ "eta":"15:03"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083062079",
+ "pid":"3SBCS17405318",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AS",
+ "street":"HEMELBOOMLN",
+ "house_number":"2",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8907827071746",
+ "address_longitude":"5.7379633192525",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"115",
+ "delivery_moment":"2022-11-04T15:10:34+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SBCS17405318",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AS2",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.8907827",
+ "lng":"5.7379634",
+ "delivery_code":"",
+ "full_address_for_navigation":"HEMELBOOMLAAN 2, BUNDE",
+ "eta":"15:10"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082840380",
+ "pid":"JUN491599949120180707570",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AN",
+ "street":"Lijsterbeslaan",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.8909388187394",
+ "address_longitude":"5.73580131796301",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"116",
+ "delivery_moment":"2022-11-04T15:12:40+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JUN491599949120180707570",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AN21NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89093881",
+ "lng":"5.7358014",
+ "delivery_code":"",
+ "full_address_for_navigation":"LIJSTERBESLAAN 21, BUNDE",
+ "eta":"15:12"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082338237",
+ "pid":"JVGL05238746001442608778",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AL",
+ "street":"BEUKENLN",
+ "house_number":"2",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8918617622624",
+ "address_longitude":"5.73712147298069",
+ "customer_short_name":"Alternate Nederland - ",
+ "product_type_description":null,
+ "delivery_sequence_number":"117",
+ "delivery_moment":"2022-11-04T15:14:36+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"JVGL05238746001442608778",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AL2NBB",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89186176",
+ "lng":"5.73712156",
+ "delivery_code":"",
+ "full_address_for_navigation":"BEUKENLAAN 2, BUNDE",
+ "eta":"15:14"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082767697",
+ "pid":"3SHM00003067677",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AT",
+ "street":"ACACIALN",
+ "house_number":"14",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892457293078",
+ "address_longitude":"5.7370259227295",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"118",
+ "delivery_moment":"2022-11-04T15:16:17+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SHM00003067677",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AT14",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89245729",
+ "lng":"5.73702601",
+ "delivery_code":"",
+ "full_address_for_navigation":"ACACIALAAN 14, BUNDE",
+ "eta":"15:16"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1080912569",
+ "pid":"00373325384003879018",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AT",
+ "street":"ACACIALN",
+ "house_number":"3",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8927151988626",
+ "address_longitude":"5.73603869060716",
+ "customer_short_name":"CARE OF CARL INTERNATIONAL",
+ "product_type_description":null,
+ "delivery_sequence_number":"119",
+ "delivery_moment":"2022-11-04T15:17:53+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"31",
+ "scanned_in_trip":"true",
+ "parcel_id":"00373325384003879018",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AT3",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89271519",
+ "lng":"5.73603877",
+ "delivery_code":"",
+ "full_address_for_navigation":"ACACIALAAN 3, BUNDE",
+ "eta":"15:17"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083285411",
+ "pid":"JUN491599949120180748155",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BC",
+ "street":"LINDENLN",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8921150830672",
+ "address_longitude":"5.736015547586",
+ "customer_short_name":"WEHKAMP",
+ "product_type_description":null,
+ "delivery_sequence_number":"120",
+ "delivery_moment":"2022-11-04T15:19:37+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"JUN491599949120180748155",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241BC8",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+ "JUN491599949120180748155"
+ ],
+ "group_parcel_keys":[
+ "1083285411"
+ ],
+ "group_sender_names":"WEHKAMP,HEMA",
+ "lat":"50.89211508",
+ "lng":"5.73601563",
+ "delivery_code":"",
+ "full_address_for_navigation":"LINDENLAAN 8, BUNDE",
+ "calculated_group_pids":[
+
+ ],
+ "eta":"15:19"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082882774",
+ "pid":"3SHEM2689268501",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BC",
+ "street":"LINDENLN",
+ "house_number":"8",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8921150830672",
+ "address_longitude":"5.736015547586",
+ "customer_short_name":"HEMA",
+ "product_type_description":null,
+ "delivery_sequence_number":"121",
+ "delivery_moment":"2022-11-04T15:19:37+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73601563",
+ "active_group_size":"2",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083285411"
+ ],
+ "group_id":"14:00_18:00_6241BC8",
+ "group_sender_names":"WEHKAMP,HEMA",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Achter de groenbak",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T07:22:03.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SHEM2689268501",
+ "interventionId":"43580736",
+ "type":"agreed_place",
+ "agreed_place_description":"Achter de groenbak",
+ "parcelKey":"1082882774"
+ },
+ "full_address_for_navigation":"LINDENLAAN 8, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "JUN491599949120180748155"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SHEM2689268501",
+ "is_intervention":"true",
+ "lat":"50.89211508",
+ "eta":"15:19"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082686447",
+ "pid":"JJD000090254000019349730",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BC",
+ "street":"LINDENLN",
+ "house_number":"10",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.89203872244",
+ "address_longitude":"5.73588151946095",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"122",
+ "delivery_moment":"2022-11-04T15:21:12+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"JJD000090254000019349730",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241BC10",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89203872",
+ "lng":"5.7358816",
+ "delivery_code":"",
+ "full_address_for_navigation":"LINDENLAAN 10, BUNDE",
+ "eta":"15:21"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082770598",
+ "pid":"3SZAE000125243",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BA",
+ "street":"LINDENLN",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892094147885",
+ "address_longitude":"5.73481843839274",
+ "customer_short_name":"ZALANDO",
+ "product_type_description":null,
+ "delivery_sequence_number":"123",
+ "delivery_moment":"2022-11-04T15:22:51+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73481852",
+ "active_group_size":"4",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083185731",
+ "1083282400",
+ "1082472664"
+ ],
+ "group_id":"14:00_18:00_6241BA21",
+ "group_sender_names":"BOL.COM,ZALANDO,ZALANDO SE",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Indien niet thuis, mag het in de grijze bak in de voortuin. Dankje!",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-03T16:23:06.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SZAE000125243",
+ "interventionId":"43553599",
+ "type":"agreed_place",
+ "agreed_place_description":"Indien niet thuis, mag het in de grijze bak in de voortuin. Dankje!",
+ "parcelKey":"1082770598"
+ },
+ "full_address_for_navigation":"LINDENLAAN 21, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SBCS17414509",
+ "3SBCS17420566",
+ "3SZAL020034308"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SZAE000125243",
+ "is_intervention":"true",
+ "lat":"50.89209414",
+ "eta":"15:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083185731",
+ "pid":"3SBCS17414509",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BA",
+ "street":"LINDENLN",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892094147885",
+ "address_longitude":"5.73481843839274",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"124",
+ "delivery_moment":"2022-11-04T15:22:51+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73481852",
+ "active_group_size":"3",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083282400",
+ "1082472664"
+ ],
+ "group_id":"14:00_18:00_6241BA21",
+ "group_sender_names":"BOL.COM,ZALANDO,ZALANDO SE",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Kun je het in de grijze bak leggen in de voortuin?",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T07:20:10.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SBCS17414509",
+ "interventionId":"43580610",
+ "type":"agreed_place",
+ "agreed_place_description":"Kun je het in de grijze bak leggen in de voortuin?",
+ "parcelKey":"1083185731"
+ },
+ "full_address_for_navigation":"LINDENLAAN 21, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SBCS17420566",
+ "3SZAL020034308"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SBCS17414509",
+ "is_intervention":"true",
+ "lat":"50.89209414",
+ "eta":"15:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082472664",
+ "pid":"3SZAL020034308",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BA",
+ "street":"LINDENLN",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892094147885",
+ "address_longitude":"5.73481843839274",
+ "customer_short_name":"ZALANDO SE",
+ "product_type_description":null,
+ "delivery_sequence_number":"125",
+ "delivery_moment":"2022-11-04T15:22:51+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73481852",
+ "active_group_size":"2",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083282400"
+ ],
+ "group_id":"14:00_18:00_6241BA21",
+ "group_sender_names":"BOL.COM,ZALANDO,ZALANDO SE",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Kun je het in de grijze bak leggen in de voortuin?",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T07:19:36.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SZAL020034308",
+ "interventionId":"43580584",
+ "type":"agreed_place",
+ "agreed_place_description":"Kun je het in de grijze bak leggen in de voortuin?",
+ "parcelKey":"1082472664"
+ },
+ "full_address_for_navigation":"LINDENLAAN 21, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SBCS17420566"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SZAL020034308",
+ "is_intervention":"true",
+ "lat":"50.89209414",
+ "eta":"15:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083282400",
+ "pid":"3SBCS17420566",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BA",
+ "street":"LINDENLN",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892094147885",
+ "address_longitude":"5.73481843839274",
+ "customer_short_name":"BOL.COM",
+ "product_type_description":null,
+ "delivery_sequence_number":"126",
+ "delivery_moment":"2022-11-04T15:22:51+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73481852",
+ "active_group_size":"1",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083282400"
+ ],
+ "group_id":"14:00_18:00_6241BA21",
+ "group_first":"true",
+ "group_sender_names":"BOL.COM,ZALANDO,ZALANDO SE",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Kun je het in de grijze bak leggen in de voortuin?",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T07:20:55.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SBCS17420566",
+ "interventionId":"43580652",
+ "type":"agreed_place",
+ "agreed_place_description":"Kun je het in de grijze bak leggen in de voortuin?",
+ "parcelKey":"1083282400"
+ },
+ "full_address_for_navigation":"LINDENLAAN 21, BUNDE",
+ "grouped":"false",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SBCS17420566"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SBCS17420566",
+ "is_intervention":"true",
+ "lat":"50.89209414",
+ "eta":"15:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082574657",
+ "pid":"3SZAE000127588",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"BA",
+ "street":"LINDENLN",
+ "house_number":"21",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892094147885",
+ "address_longitude":"5.73481843839274",
+ "customer_short_name":"ZALANDO",
+ "product_type_description":null,
+ "delivery_sequence_number":"127",
+ "delivery_moment":"2022-11-04T15:22:51+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.73481852",
+ "active_group_size":"5",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1083185731",
+ "1083282400",
+ "1082770598",
+ "1082472664"
+ ],
+ "group_id":"14:00_18:00_6241BA21",
+ "group_sender_names":"BOL.COM,ZALANDO,ZALANDO SE",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Indien niet thuis, mag het in de grijze bak in de voortuin. Dankje!",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-03T16:22:52.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SZAE000127588",
+ "interventionId":"43553589",
+ "type":"agreed_place",
+ "agreed_place_description":"Indien niet thuis, mag het in de grijze bak in de voortuin. Dankje!",
+ "parcelKey":"1082574657"
+ },
+ "full_address_for_navigation":"LINDENLAAN 21, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "3SBCS17414509",
+ "3SBCS17420566",
+ "3SZAE000125243",
+ "3SZAL020034308"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"3SZAE000127588",
+ "is_intervention":"true",
+ "lat":"50.89209414",
+ "eta":"15:22"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083102319",
+ "pid":"3SHM00003071115",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AJ",
+ "street":"BEUKENLN",
+ "house_number":"43",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8921444589904",
+ "address_longitude":"5.73305834961385",
+ "customer_short_name":"H&M",
+ "product_type_description":null,
+ "delivery_sequence_number":"128",
+ "delivery_moment":"2022-11-04T15:25:28+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SHM00003071115",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AJ43",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89214445",
+ "lng":"5.73305843",
+ "delivery_code":"",
+ "full_address_for_navigation":"BEUKENLAAN 43, BUNDE",
+ "eta":"15:25"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083268018",
+ "pid":"3SPDC200419020",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AM",
+ "street":"BEUKENLN",
+ "house_number":"60",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8921634419844",
+ "address_longitude":"5.73227042404448",
+ "customer_short_name":"KBV B.V. NL",
+ "product_type_description":"PA",
+ "delivery_sequence_number":"129",
+ "delivery_moment":"2022-11-04T15:27:00+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"Naar ServicePoint",
+ "parcel_status_key":"31",
+ "lng":"5.73227051",
+ "active_group_size":"1",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+
+ ],
+ "group_id":"14:00_18:00_6241AM60NBB",
+ "group_first":"true",
+ "group_sender_names":"",
+ "delivery_code":"",
+ "intervention_data":{
+ "servicePointDelivery":{
+ "servicePointId":"NL-624101"
+ },
+ "timestamp":"2022-11-04T06:41:11.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"3SPDC200419020",
+ "interventionId":"43578574",
+ "type":"to_sp",
+ "parcelKey":"1083268018"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"BEUKENLAAN 60, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+
+ ],
+ "group_task_index":"0",
+ "group_size":"1",
+ "parcel_id":"3SPDC200419020",
+ "is_intervention":"true",
+ "lat":"50.89216344",
+ "eta":"15:27"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083098803",
+ "pid":"3SNKD005560605",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AJ",
+ "street":"BEUKENLN",
+ "house_number":"55",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892449385247",
+ "address_longitude":"5.73238824503304",
+ "customer_short_name":"Nakdcom One World AB",
+ "product_type_description":null,
+ "delivery_sequence_number":"130",
+ "delivery_moment":"2022-11-04T15:28:27+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SNKD005560605",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AJ55",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89244938",
+ "lng":"5.73238833",
+ "delivery_code":"",
+ "full_address_for_navigation":"BEUKENLAAN 55, BUNDE",
+ "eta":"15:28"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082627115",
+ "pid":"JJD000090254011007809111",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AG",
+ "street":"IEPENLN",
+ "house_number":"46",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8914927288202",
+ "address_longitude":"5.73189704604204",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"131",
+ "delivery_moment":"2022-11-04T15:30:31+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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",
+ "group_sender_names":"AMAZON",
+ "lat":"50.89149272",
+ "lng":"5.73189713",
+ "active_group_size":"3",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1082687288",
+ "1082627115",
+ "1082590459"
+ ],
+ "group_id":"14:00_18:00_6241AG46",
+ "group_first":"false",
+ "delivery_code":"",
+ "full_address_for_navigation":"IEPENLAAN 46, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "group_pids":[
+ "JJD000090254000019350254",
+ "JJD000090254011007809111",
+ "JJD000090254011007809125"
+ ],
+ "group_task_index":"1",
+ "group_size":"3",
+ "parcel_id":"JJD000090254011007809111",
+ "eta":"15:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082590459",
+ "pid":"JJD000090254011007809125",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AG",
+ "street":"IEPENLN",
+ "house_number":"46",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8914927288202",
+ "address_longitude":"5.73189704604204",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"132",
+ "delivery_moment":"2022-11-04T15:30:31+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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",
+ "group_sender_names":"AMAZON",
+ "lat":"50.89149272",
+ "lng":"5.73189713",
+ "active_group_size":"3",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1082687288",
+ "1082627115",
+ "1082590459"
+ ],
+ "group_id":"14:00_18:00_6241AG46",
+ "group_first":"false",
+ "delivery_code":"",
+ "full_address_for_navigation":"IEPENLAAN 46, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "group_pids":[
+ "JJD000090254000019350254",
+ "JJD000090254011007809111",
+ "JJD000090254011007809125"
+ ],
+ "group_task_index":"2",
+ "group_size":"3",
+ "parcel_id":"JJD000090254011007809125",
+ "eta":"15:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082687288",
+ "pid":"JJD000090254000019350254",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AG",
+ "street":"IEPENLN",
+ "house_number":"46",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8914927288202",
+ "address_longitude":"5.73189704604204",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"133",
+ "delivery_moment":"2022-11-04T15:30:31+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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",
+ "group_sender_names":"AMAZON",
+ "lat":"50.89149272",
+ "lng":"5.73189713",
+ "active_group_size":"3",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1082687288",
+ "1082627115",
+ "1082590459"
+ ],
+ "group_id":"14:00_18:00_6241AG46",
+ "group_first":"true",
+ "delivery_code":"",
+ "full_address_for_navigation":"IEPENLAAN 46, BUNDE",
+ "grouped":"true",
+ "scanned_in_trip":"true",
+ "group_pids":[
+ "JJD000090254000019350254",
+ "JJD000090254011007809111",
+ "JJD000090254011007809125"
+ ],
+ "group_task_index":"0",
+ "group_size":"3",
+ "parcel_id":"JJD000090254000019350254",
+ "eta":"15:30"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082037146",
+ "pid":"3SLDL0011435273",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AD",
+ "street":"IEPENLN",
+ "house_number":"85",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.892579562518",
+ "address_longitude":"5.73026731326001",
+ "customer_short_name":"LIDL",
+ "product_type_description":null,
+ "delivery_sequence_number":"134",
+ "delivery_moment":"2022-11-04T15:32:42+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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":"3SLDL0011435273",
+ "timeframe":"14:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"14:00_18:00_6241AD85",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89257956",
+ "lng":"5.7302674",
+ "delivery_code":"",
+ "full_address_for_navigation":"IEPENLAAN 85, BUNDE",
+ "eta":"15:32"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082599868",
+ "pid":"JJD000090254011007812177",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AG",
+ "street":"IEPENLN",
+ "house_number":"72",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8928510066067",
+ "address_longitude":"5.72838987486721",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"135",
+ "delivery_moment":"2022-11-04T15:34:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.72838996",
+ "active_group_size":"2",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1082591955"
+ ],
+ "group_id":"14:00_18:00_6241AG72",
+ "group_sender_names":"AMAZON",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Achter bloemenrand bij voordeur",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T03:04:56.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"JJD000090254011007812177",
+ "interventionId":"43575215",
+ "type":"agreed_place",
+ "agreed_place_description":"Achter bloemenrand bij voordeur",
+ "parcelKey":"1082599868"
+ },
+ "full_address_for_navigation":"IEPENLAAN 72, BUNDE",
+ "scanned_in_trip":"true",
+ "intervention_message_confirmed":"true",
+ "group_pids":[
+ "JJD000090254000019345332"
+ ],
+ "calculated_group_pids":[
+
+ ],
+ "parcel_id":"JJD000090254011007812177",
+ "is_intervention":"true",
+ "lat":"50.892851",
+ "eta":"15:34"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1082591955",
+ "pid":"JJD000090254000019345332",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"AG",
+ "street":"IEPENLN",
+ "house_number":"72",
+ "house_number_addition":null,
+ "city":"BUNDE",
+ "address_latitude":"50.8928510066067",
+ "address_longitude":"5.72838987486721",
+ "customer_short_name":"AMAZON",
+ "product_type_description":null,
+ "delivery_sequence_number":"136",
+ "delivery_moment":"2022-11-04T15:34:26+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T14:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18: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.72838996",
+ "active_group_size":"1",
+ "timeframe":"14:00-18:00",
+ "group_parcel_keys":[
+ "1082591955"
+ ],
+ "group_id":"14:00_18:00_6241AG72",
+ "group_first":"true",
+ "group_sender_names":"AMAZON",
+ "delivery_code":"",
+ "intervention_data":{
+ "agreedPlace":{
+ "placeDescription":"Achter bloemenrand bij voordeur",
+ "agreeWithTerms":"true"
+ },
+ "timestamp":"2022-11-04T03:04:33.000+01:00",
+ "status":"SUCCEEDED",
+ "parcelId":"JJD000090254000019345332",
+ "interventionId":"43575214",
+ "type":"agreed_place",
+ "agreed_place_description":"Achter bloemenrand bij voordeur",
+ "parcelKey":"1082591955"
+ },
+ "grouped":"false",
+ "full_address_for_navigation":"IEPENLAAN 72, BUNDE",
+ "scanned_in_trip":"true",
+ "group_pids":[
+ "JJD000090254000019345332"
+ ],
+ "intervention_message_confirmed":"true",
+ "group_task_index":"0",
+ "calculated_group_pids":[
+
+ ],
+ "group_size":"1",
+ "parcel_id":"JJD000090254000019345332",
+ "is_intervention":"true",
+ "lat":"50.892851",
+ "eta":"15:34"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083439175",
+ "pid":"3SAFHMAA3990282227",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"NA",
+ "street":"GEULSTR",
+ "house_number":"63",
+ "house_number_addition":"A",
+ "city":"BUNDE",
+ "address_latitude":"50.8974916",
+ "address_longitude":"5.723602500000001",
+ "customer_short_name":"AFHALEN OP SERVICEPOINT",
+ "product_type_description":null,
+ "delivery_sequence_number":"137",
+ "delivery_moment":"2022-11-04T16:00:41+01:00",
+ "begin_delivery_pickup_window":"1970-01-01T16:00:00+01:00",
+ "end_delivery_pickup_window":"1970-01-01T18: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":"4",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SAFHMAA3990282227",
+ "timeframe":"16:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"P_16:00_18:00_6241NA63A",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89747374",
+ "lng":"5.72358822",
+ "delivery_code":"",
+ "full_address_for_navigation":"GEULSTRAAT 63, BUNDE",
+ "eta":"16:00"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083442855",
+ "pid":"3SAFH229673639",
+ "postal_code_numeric":"6241",
+ "postal_code_alpha":"CW",
+ "street":"Roggeveldstraat",
+ "house_number":"14",
+ "house_number_addition":null,
+ "city":"Bunde",
+ "address_latitude":"50.8987460739383",
+ "address_longitude":"5.73347116865626",
+ "customer_short_name":"AFHALEN OP SERVICEPOINT",
+ "product_type_description":null,
+ "delivery_sequence_number":"138",
+ "delivery_moment":"2022-11-04T16:04:22+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T16:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18:00:00+01:00",
+ "delivery_instruction":null,
+ "parcel_delivery_remark":null,
+ "courier_remark":null,
+ "service_type":"0",
+ "servicepoint_parcel":true,
+ "servicepointid":"30189",
+ "next_timeframe_descr_abbrevation":"Retour naar klant",
+ "parcel_status_key":"4",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SAFH229673639",
+ "timeframe":"16:00-18:00",
+ "group_first":"true",
+ "group_task_index":"0",
+ "grouped":"false",
+ "group_id":"P_16:00_18:00_6241CW14SP",
+ "group_size":"1",
+ "active_group_size":"1",
+ "group_pids":[
+
+ ],
+ "group_parcel_keys":[
+
+ ],
+ "group_sender_names":"",
+ "lat":"50.89874607",
+ "lng":"5.73347125",
+ "delivery_code":"",
+ "full_address_for_navigation":"ROGGEVELDSTRAAT 14, BUNDE",
+ "eta":"16:04"
+ },
+ {
+ "timeframe_key":"96870",
+ "trip_key":"18996870",
+ "parcel_key":"1083442776",
+ "pid":"3SAFH229673629",
+ "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":"AFHALEN OP SERVICEPOINT",
+ "product_type_description":null,
+ "delivery_sequence_number":"139",
+ "delivery_moment":"2022-11-04T16:14:07+01:00",
+ "begin_delivery_pickup_window":"2022-11-04T16:00:00+01:00",
+ "end_delivery_pickup_window":"2022-11-04T18:00:00+01:00",
+ "delivery_instruction":null,
+ "parcel_delivery_remark":null,
+ "courier_remark":null,
+ "service_type":"0",
+ "servicepoint_parcel":true,
+ "servicepointid":"27655",
+ "next_timeframe_descr_abbrevation":"Retour naar klant",
+ "parcel_status_key":"4",
+ "scanned_in_trip":"true",
+ "parcel_id":"3SAFH229673629",
+ "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.91896327",
+ "lng":"5.78616305",
+ "delivery_code":"",
+ "full_address_for_navigation":"HORSTERWEG 26, MAASTRICHT-AIRPORT",
+ "eta":"16:14"
+ }
+ ],
+ "device_start_lng":"5.7862933",
+ "start_km":"24704",
+ "started":"true",
+ "device_start_lat":"50.9189756",
+ "last_trip_start_received_at":"1667556346",
+ "all_tasks_finished":"false",
+ "unique_stops":"113",
+ "eta_first_stop":"11:11:50",
+ "in_trip_scan_finished":"true",
+ "first_stop_lat":"50.8996568140536",
+ "tasks_size":"138",
+ "eva_added":"true",
+ "trip_start_request_sent":"true",
+ "eta_calculation_success":"true",
+ "all_parcel_keys":"1082780626,1082317614,1082382482,1083277016,1082337750,1082386286,1081965791,1081965790,1082595448,1082055055,1082054939,1083069759,1082875386,1083017437,1082609204,1083168207,1082055583,1083308037,1079944858,1082393783,1083254608,1083439201,1083439241,1083439240,1083439242,1083439239,1080847897,1083260754,1083301535,1082625664,1082473652,1082473653,1082473654,1082736688,1081769863,1082714734,1081856717,1083391569,1083224059,1082940789,1082541642,1083265150,1082660410,1081848937,1080605133,1079662803,1082279637,1083240112,1082624341,1083190709,1081856998,1081435761,1082982257,1082982254,1083179451,1082087091,1082852817,1081239211,1082626314,1083439181,1083384386,1082007160,1082627114,1081237961,1082192683,1082302858,1082395732,1083094469,1083338301,1082770506,1082625663,1082740181,1083036929,1081115937,1081038289,1083396367,1083439245,1082852761,1082281813,1083269136,1082388595,1080964527,1081844789,1082966835,1082627907,1081970544,1082739625,1082819044,1082540042,1082744450,1083175812,1082644173,1082607881,1083292588,1083188958,1083061424,1082852117,1083357582,1082731858,1083043218,1082963931,1083279675,1081057300,1081239448,1083155525,1083296404,1083375815,1083310965,1082955457,1083446177,1083446145,1083446099,1083446096,1083062079,1082840380,1082338237,1082767697,1080912569,1083285411,1082882774,1082686447,1082770598,1083185731,1082472664,1083282400,1082574657,1083102319,1083268018,1083098803,1082627115,1082590459,1082687288,1082037146,1082599868,1082591955,1083439175,1083442855,1083442776",
+ "tasks_enriched":"true",
+ "enriched_from":"redis",
+ "first_stop_lng":"5.75238472757395"
+ }
+ '''));
+ }
+}