cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2113
Views
0
Helpful
2
Replies

ISE join point's ID

piotr_pan120
Frequent Visitor
Frequent Visitor

Does anyone know how can I display the internal ID of the active directory join point?

I need for a script (ERS), in the Doc they say:

 

1. Create a domain join point in ISE. In the "domain" parameter use cisco.com
2. Get all defined join points and copy your join point's ID from the response.
3. Join all ISE nodes to the domain. Use the ID from no. 2 in the URL.

My join point has been created manually some time ago and now I would like to use it in my script but I don't know how to get the value. 


  

1 Accepted Solution

Accepted Solutions

Mike.Cifelli
VIP Alumni
VIP Alumni
Using the following GET call you can extract all AD Join Point IDs: https://<ise pan>:9060/ers/config/activedirectory
The returned result will look like the following:
{
"SearchResult" : {
"total" : 0,
"resources" : [ {
"id" : "17a8a5d0-5477-11e8-adf6-024237b65d95",
"name" : "XXXX",
"description" : "",
"link" : {
"rel" : "self",
"href" : "https://<ise pan>:9060/ers/config/activedirectory/17a8a5d0-5477-11e8-adf6-024237b65d95",
"type" : "application/json"
}
}
HTH!

View solution in original post

2 Replies 2

Mike.Cifelli
VIP Alumni
VIP Alumni
Using the following GET call you can extract all AD Join Point IDs: https://<ise pan>:9060/ers/config/activedirectory
The returned result will look like the following:
{
"SearchResult" : {
"total" : 0,
"resources" : [ {
"id" : "17a8a5d0-5477-11e8-adf6-024237b65d95",
"name" : "XXXX",
"description" : "",
"link" : {
"rel" : "self",
"href" : "https://<ise pan>:9060/ers/config/activedirectory/17a8a5d0-5477-11e8-adf6-024237b65d95",
"type" : "application/json"
}
}
HTH!

Hi Mike,

 

Thank you for your quick response.

It works as expected, I should have read the DOC a bit more careful.