Hello all,
I want to create an admin in particular organization targeted to specific network with access privilege "SSID-only" using Dashboard API. I'm able to do it in the Dashboard. But when I try to do the same using Dashboard API, it is throwing me error saying
"'access' must be one of: 'full', 'read-only', 'guest-ambassador' or 'monitor-only'".
Looks like there is no "SSID-only" option provided in the API.
API used: {{baseUrl}}/organizations/:organizationId/admins
Sample body:
{
"name": "Rob",
"email": "Rob@abc.com",
"orgAccess": "none",
"networks": [
{
"id": "1234",
"access": "SSID-only"
}
]
}
Anyone faced this issue before? Or any Idea how to tackle this?