Is there any APIs available to check agent status with Node ID or IP.
https://NAC-IP:8443/datamanagement/a/agentsPage?filter=abc*
but is it possible to check with exact name or list of node IDs instead of all.
Release : 6.5, 6.6, 6.7 or higher.
Component : CA RELEASE AUTOMATION RELEASE OPERATIONS CENTER
java script to filter based on name consisting 'ibn' and reachable status is true
rest_query_response='{"list":[{"usageCount":"4","serverGroups":...........]}'
json_data=JSON.parse(rest_query_response)
array_object=Array(json_data.list)[0]
result=array_object.filter(x=>x.name.includes('ibn') & x.reachable===true)