Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Hello Everyone.I'm working with ISE's API and I'm facing a strange error creating an account.Basically, I'm using Python with the requests module to:- obtain the sponsor portal ID (GET);- obtain the sponsor ID (GET);- create the guest user on the spo...
Hello Everyone,I'm facing a strange error using the APIs: I'm trying to create a user on ISE 3.1, the user is created if I get a look via GUI to the sponsor portal but every time I'm receiving the following error:
{
"ERSResponse" : {
"operation...
Hello Rodrigo,
thanks for answering.Both ports (443 or 9060) should work as expected:https://developer.cisco.com/docs/identity-services-engine/latest/#!cisco-ise-api-framework/cisco-ise-api-service"ERS APIs are REST APIs that are based on the HTTPS p...
This is the python script that I made:
#!/usr/bin/env python3
import base64, json, requests, urllib3
from datetime import datetime as dt, timedelta as td
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
ip = "10.10.10.10"
port ...
Hello BB,
thanks for answering.
There aren't relevant logs on "Reports" --> "Sponsor Login and Audit" only authentications by the ERS user.
Anyway, the Guest User is created, what is wrong?
This is the payload that I'm using:payload = {
"GuestUser"...