You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/FingerprintApi.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -450,6 +450,8 @@ public class FingerprintApiExample {
450
450
String sdkVersion ="sdkVersion_example"; // String | Filter events by a specific SDK version associated with the identification event. Example: `3.11.14`
451
451
String sdkPlatform ="js"; // String | Filter events by the SDK Platform associated with the identification event. `js` - JavaScript agent (Web). `ios` - Apple iOS based devices. `android` - Android based devices.
452
452
List<String> environment =Arrays.asList(); // List<String> | Filter for events by providing one or more environment IDs.
453
+
String proximityId ="proximityId_example"; // String | Filter events by the most precise Proximity ID provided by default. > Note: When using this parameter, only events with the `products.proximity.id` property matching the provided ID are returned. Events without a `products.proximity` result are left out of the response.
454
+
Integer proximityPrecisionRadius =10; // Integer | Filter events by Proximity Radius. > Note: When using this parameter, only events with the `products.proximity.precisionRadius` property set to a valid value are returned. Events without a `products.proximity` result are left out of the response.
453
455
try {
454
456
SearchEventsResponse result = api.searchEvents(limit, newFingerprintApi.SearchEventsOptionalParams()
455
457
.setPaginationKey(paginationKey)
@@ -483,7 +485,9 @@ public class FingerprintApiExample {
System.err.println("Exception when calling FingerprintApi.searchEvents:"+ e.getMessage());
@@ -539,6 +543,8 @@ Object containing optional parameters for API method. Supports a fluent interfac
539
543
|**sdkVersion**|**String**| Filter events by a specific SDK version associated with the identification event. Example: `3.11.14`|[optional]|
540
544
|**sdkPlatform**|**String**| Filter events by the SDK Platform associated with the identification event. `js` - JavaScript agent (Web). `ios` - Apple iOS based devices. `android` - Android based devices. |[optional][enum: js, android, ios]|
541
545
|**environment**|**List<String>**| Filter for events by providing one or more environment IDs. |[optional]|
546
+
|**proximityId**|**String**| Filter events by the most precise Proximity ID provided by default. > Note: When using this parameter, only events with the `products.proximity.id` property matching the provided ID are returned. Events without a `products.proximity` result are left out of the response. |[optional]|
547
+
|**proximityPrecisionRadius**|**Integer**| Filter events by Proximity Radius. > Note: When using this parameter, only events with the `products.proximity.precisionRadius` property set to a valid value are returned. Events without a `products.proximity` result are left out of the response. |[optional][enum: 10, 25, 65, 175, 450, 1200, 3300, 8500, 22500]|
|**id**|**String**| A stable privacy-preserving identifier for a given proximity zone. ||
13
+
|**precisionRadius**|[**PrecisionRadiusEnum**](#PrecisionRadiusEnum)| The radius of the proximity zone’s precision level, in meters. ||
14
+
|**confidence**|**Float**| A value between `0` and `1` representing the likelihood that the true device location lies within the mapped proximity zone. * Scores closer to `1` indicate high confidence that the location is inside the mapped proximity zone. * Scores closer to `0` indicate lower confidence, suggesting the true location may fall in an adjacent zone. ||
|**id**|**String**| A stable privacy-preserving identifier for a given proximity zone. ||
13
+
|**precisionRadius**|[**PrecisionRadiusEnum**](#PrecisionRadiusEnum)| The radius of the proximity zone’s precision level, in meters. ||
14
+
|**confidence**|**Float**| A value between `0` and `1` representing the likelihood that the true device location lies within the mapped proximity zone. * Scores closer to `1` indicate high confidence that the location is inside the mapped proximity zone. * Scores closer to `0` indicate lower confidence, suggesting the true location may fall in an adjacent zone. ||
0 commit comments