<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ISE API noob. Having trouble creating endpoint via the API with Py in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744252#M578954</link>
    <description>&lt;P&gt;See &lt;LI-MESSAGE title="ISE ERS API Examples" uid="3622623" url="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/m-p/3622623#U3622623" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; for this exact example and more:&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="list-style-type: disc; margin-left: 15px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-1962751851" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint Group and Assign an Endpoint&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-284380107" target="_blank" rel="nofollow noopener noreferrer"&gt;Create Endpoint Group&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId--1523074356" target="_blank" rel="nofollow noopener noreferrer"&gt;Create Endpoint&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 15px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-835355758" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint with Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId--843015986" target="_blank" rel="nofollow noopener noreferrer"&gt;Define ISE Endpoint Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-1644496847" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint with Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We also have &lt;A href="https://cs.co/ise-youtube" target="_blank" rel="noopener"&gt;https://cs.co/ise-youtube&lt;/A&gt; with multiple webinars on how to do ISE REST APIs like :&lt;BR /&gt;▶ &lt;A class="" href="https://youtu.be/iauFLdiUPQk" target="_self"&gt;&lt;STRONG&gt;ISE REST APIs Introduction&lt;/STRONG&gt;&lt;/A&gt;&lt;BR /&gt;You can look at the Show Notes and jump ahead to the topic(s) you want.&lt;/P&gt;
&lt;P&gt;I also have a GitHub repository with all of the examples in the webinar for you to copy and paste :&lt;BR /&gt;&lt;A href="https://github.com/1homas/20221004_ISE_REST_APIs_Introduction" target="_blank" rel="noopener"&gt;https://github.com/1homas/20221004_ISE_REST_APIs_Introduction&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Since you appear to be using Python, you may also want&lt;BR /&gt;&lt;A href="https://github.com/1homas/ISE_Python_Scripts" target="_blank" rel="noopener"&gt;https://github.com/1homas/ISE_Python_Scripts&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;When submitting code, please use the &lt;STRONG&gt;Insert Code&lt;/STRONG&gt; option so it is easier to read:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thomas_0-1671745534797.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/171832iD1278C57037B7E9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="thomas_0-1671745534797.png" alt="thomas_0-1671745534797.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is what you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;curl  --include  --insecure  --location \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --user $ISE_USERNAME:$ISE_PASSWORD  \
  --request POST https://$ISE_HOSTNAME/ers/config/endpoint \
  --data '
{
  "ERSEndPoint" : {
    "name" : "Test Endpoint",
    "description" : "My new endpoint",
    "mac" : "00:01:02:03:04:05",
    "groupId" : "a1bb2030-8c01-11e6-996c-525400b48521",
    "staticGroupAssignment" : true
  }
}'
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2022 21:52:45 GMT</pubDate>
    <dc:creator>thomas</dc:creator>
    <dc:date>2022-12-22T21:52:45Z</dc:date>
    <item>
      <title>ISE API noob. Having trouble creating endpoint via the API with Python</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744184#M578951</link>
      <description>&lt;P&gt;I'm trying to create an endpoint via the API and assign it to a specific group and can't figure out where I'm going wrong. Can someone give me a hint?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ISE_LAB_URL&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="https://serverurl.com:9060/ers/" target="_blank" rel="noopener"&gt;https://serverurl.com:9060/ers/&lt;/A&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CONFIG_ENDPOINT_URL&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"config/endpoint"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CONFIG_ENDPOINT_GROUP&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"config/endpointgroup/"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;#headers&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;headers&lt;/SPAN&gt;&lt;SPAN&gt; = {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Content-Type"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"application/json"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Accept"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"application/json"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ERSEndPoint&lt;/SPAN&gt;&lt;SPAN&gt; = {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;"Test Import1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"description"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;"Test import device1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"mac"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;"00:DE:AD:BE:EF:10"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"groupId"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;"20e24"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"staticGroupAssignment"&lt;/SPAN&gt;&lt;SPAN&gt; : true,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"staticGroupAssignmentDefined"&lt;/SPAN&gt;&lt;SPAN&gt; : true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;response&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;requests&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;post&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISE_LAB_URL&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;CONFIG_ENDPOINT_URL&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;ERSEndPoint&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;headers&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;headers&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;auth&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;API_ERS_USER&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;json&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;dumps&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;response&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;json&lt;/SPAN&gt;&lt;SPAN&gt;(), &lt;/SPAN&gt;&lt;SPAN&gt;indent&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;sort_keys&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;"_"&lt;/SPAN&gt;&lt;SPAN&gt; * &lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I run the command and then I'll get an output saying "true" isn't defined.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ISE_ADD_ENDPOINT.py&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "/Users//Python/ISE_ADD_ENDPOINT.py", line 25, in &amp;lt;module&amp;gt;&lt;BR /&gt;"staticGroupAssignment" : true,&lt;BR /&gt;NameError: name 'true' is not defined&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So I'll remove the two lines with "true" in them just to see what happens and I'll get this error:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/ISE_ADD_ENDPOINT.py&lt;BR /&gt;{&lt;BR /&gt;"ERSResponse": {&lt;BR /&gt;"link": {&lt;BR /&gt;"href": "https://:9060/ers/config/endpoint",&lt;BR /&gt;"rel": "related",&lt;BR /&gt;"type": "application/xml"&lt;BR /&gt;},&lt;BR /&gt;"messages": [&lt;BR /&gt;{&lt;BR /&gt;"code": "Application resource validation exception",&lt;BR /&gt;"title": "Invalid JSON Input: Unrecognized token 'name': was expecting \n at [Source: java.io.StringReader@11c71876; line: 1, column: 5]",&lt;BR /&gt;"type": "ERROR"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"operation": "POST-create-endpoint"&lt;BR /&gt;}&lt;BR /&gt;} ________________________________________________________________________________&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Jan 2023 14:48:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744184#M578951</guid>
      <dc:creator>ab23</dc:creator>
      <dc:date>2023-01-04T14:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: ISE API noob. Having trouble creating endpoint via the API with Py</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744252#M578954</link>
      <description>&lt;P&gt;See &lt;LI-MESSAGE title="ISE ERS API Examples" uid="3622623" url="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/m-p/3622623#U3622623" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; for this exact example and more:&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="list-style-type: disc; margin-left: 15px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-1962751851" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint Group and Assign an Endpoint&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-284380107" target="_blank" rel="nofollow noopener noreferrer"&gt;Create Endpoint Group&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId--1523074356" target="_blank" rel="nofollow noopener noreferrer"&gt;Create Endpoint&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 15px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-835355758" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint with Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId--843015986" target="_blank" rel="nofollow noopener noreferrer"&gt;Define ISE Endpoint Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="list-style-type: disc; margin-left: 30px; margin-bottom: 1px;"&gt;&lt;A href="https://community.cisco.com/t5/security-knowledge-base/ise-ers-api-examples/ta-p/3622623#toc-hId-1644496847" target="_blank" rel="nofollow noopener noreferrer"&gt;Create an Endpoint with Custom Attributes&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We also have &lt;A href="https://cs.co/ise-youtube" target="_blank" rel="noopener"&gt;https://cs.co/ise-youtube&lt;/A&gt; with multiple webinars on how to do ISE REST APIs like :&lt;BR /&gt;▶ &lt;A class="" href="https://youtu.be/iauFLdiUPQk" target="_self"&gt;&lt;STRONG&gt;ISE REST APIs Introduction&lt;/STRONG&gt;&lt;/A&gt;&lt;BR /&gt;You can look at the Show Notes and jump ahead to the topic(s) you want.&lt;/P&gt;
&lt;P&gt;I also have a GitHub repository with all of the examples in the webinar for you to copy and paste :&lt;BR /&gt;&lt;A href="https://github.com/1homas/20221004_ISE_REST_APIs_Introduction" target="_blank" rel="noopener"&gt;https://github.com/1homas/20221004_ISE_REST_APIs_Introduction&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Since you appear to be using Python, you may also want&lt;BR /&gt;&lt;A href="https://github.com/1homas/ISE_Python_Scripts" target="_blank" rel="noopener"&gt;https://github.com/1homas/ISE_Python_Scripts&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;When submitting code, please use the &lt;STRONG&gt;Insert Code&lt;/STRONG&gt; option so it is easier to read:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thomas_0-1671745534797.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/171832iD1278C57037B7E9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="thomas_0-1671745534797.png" alt="thomas_0-1671745534797.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is what you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;curl  --include  --insecure  --location \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --user $ISE_USERNAME:$ISE_PASSWORD  \
  --request POST https://$ISE_HOSTNAME/ers/config/endpoint \
  --data '
{
  "ERSEndPoint" : {
    "name" : "Test Endpoint",
    "description" : "My new endpoint",
    "mac" : "00:01:02:03:04:05",
    "groupId" : "a1bb2030-8c01-11e6-996c-525400b48521",
    "staticGroupAssignment" : true
  }
}'
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 21:52:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744252#M578954</guid>
      <dc:creator>thomas</dc:creator>
      <dc:date>2022-12-22T21:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: ISE API noob. Having trouble creating endpoint via the API with Py</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744280#M578955</link>
      <description>&lt;P&gt;Thank you Thomas. Appreciate the response.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 23:03:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4744280#M578955</guid>
      <dc:creator>ab23</dc:creator>
      <dc:date>2022-12-22T23:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: ISE API noob. Having trouble creating endpoint via the API with Py</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4749085#M579061</link>
      <description>&lt;P&gt;Fixed my own issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 22:05:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-api-noob-having-trouble-creating-endpoint-via-the-api-with/m-p/4749085#M579061</guid>
      <dc:creator>ab23</dc:creator>
      <dc:date>2023-01-04T22:05:49Z</dc:date>
    </item>
  </channel>
</rss>

