07-30-2019 10:29 AM
I've successfully implemented a `delete` method already for endpoints via their unique id.
What I want to do is remove a specific MAC address from an identity group, without deleting the MAC itself from ISE. How do I do this?
Solved! Go to Solution.
07-31-2019 11:34 AM
12-16-2022 04:07 AM
Note: To remove an endpoint from an ID group, simply change staticGroupAssignment to false.
I tried this and it worked
Source:
07-30-2019 10:59 AM
07-31-2019 10:27 AM
07-30-2019 10:39 PM
It's the "Update" operation of the endpoint API (like Mike said it's an HTTP PUT).
Do you know, that the API documentation in the ISE live system is pretty good for this?
https://{FQDN-YOUR-ISE}:9060/ers/sdk
For your specific question:
API URL: https://{FQDN-YOUR-ISE}:9060/ers/config/endpoint/{id}
Method: PUT
Content (json):
{ "ERSEndPoint" : { "groupId" : "groupId"
}
}
07-31-2019 10:23 AM
07-31-2019 11:34 AM
12-16-2022 04:07 AM
Note: To remove an endpoint from an ID group, simply change staticGroupAssignment to false.
I tried this and it worked
Source:
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide