-
Describe the bug To Reproduce Expected behavior Environment (please complete the following information):
Additional context Using the following command takes 7 minutes for 700 POC users. Out total user base will be 30K when deployed
We are moving from SentinelOne which has a column called lastLoggedInUser in their table so is part of the main query by default and which we use to match users to computers. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is not a bug, and this is correct. You can use the
Your example takes 7 minutes because it's requesting each login history individually, instead of sending 100 at a time. |
Beta Was this translation helpful? Give feedback.
This is not a bug, and this is correct.
-Login
is used with-Id
to signify that thedevice_id
should be sent to the login history API, instead of the device details API.You can use the
-Include
parameter to requestlogin_history
with other device details. Also note that your-Filter
parameter will typically use double quotes, rather than curly braces:Your example takes 7 minutes because it's requesting each login history individually, instead of sending 100 at a time.