07-29-2025 05:17 PM
Trying to get to XIQ -> Control -> End-Systems (Last Seen) using the GraphQL. Just cannot find it. Here's the GUI, but I want to call it in XIQ to get the "MACs" and the "Last Seen" dates.
I've tried the below, but doesn't seem to be the right field.
{
accessControl {
allEndSystemMacs
}
}
Also tried, but it's just way to much info. I just need the machine name and the last seen date of the MACs.
{
accessControl {
allEndSystemsAsProperties(maxResults: 100)
}
}
07-30-2025 06:01 AM - edited 07-30-2025 06:03 AM
Hi,
here is example:
{accessControl {endSystemByMac(macAddress:"00:50:56:BC:75:14"){endSystem{lastSeenTime}}}}
You can query the list of end-systems and then query attributes you want for each End-system