-
when using QueryDevicesByFilterScroll the total items are unique? https://www.falconpy.io/Service-Collections/Hosts.html#querydevicesbyfilterscroll thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hi @roeiklein - Results from QueryDevicesByFilterScroll should be unique. Can we see an example of your code so we can try to recreate this? |
Beta Was this translation helpful? Give feedback.
-
@jshcodes thank you for the fast respond.
|
Beta Was this translation helpful? Give feedback.
-
Hi @roeiklein - Think I've found the problem. We're passing response = host.query_devices_by_filter_scroll(parameters=params) After making this change your code should execute as expected.
Thank you for the question! 😄 |
Beta Was this translation helpful? Give feedback.
Hi @roeiklein -
Think I've found the problem.
We're passing
params=params
in our second call to QueryDevicesByFilterScroll, but the query string parameters dictionary keyword isparameters
, this line will need to change to read:After making this change your code should execute as expected.
Thank you for the question! 😄