Replies: 2 comments 4 replies
-
Hi, I have a similar request but to create Port Profiles across multiple hundreds of sites. Any possibility to do this with API? |
Beta Was this translation helpful? Give feedback.
4 replies
-
@munfai-79 For your use-case the URL is structured like so: HTTP request is POST. Payload looks roughly like this: {
"attr_no_delete": false,
"attr_hidden_id": "",
"name": "Testing123",
"use_usg_auth_server": false,
"auth_servers": [
{
"ip": "192.168.0.100",
"port": 1812,
"x_secret": "blablabla"
}
],
"acct_servers": [],
"vlan_enabled": true,
"vlan_wlan_mode": "disabled",
"accounting_enabled": false,
"interim_update_enabled": true,
"interim_update_interval": "3600",
"x_ca_crts": []
} With this info you can use the custom method or create a PR and contribute a method/function similar to the above mentioned one. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a requirement to create a new Radius profile for several hundred sites...
Does anyone know of a way to do this using the API ? The profile is identical across all sites - same name, same auth server IP/port, same key
I see there is a function called list_radius_profile in the API, however there is no function to create/set one.
Thank you in advance
Beta Was this translation helpful? Give feedback.
All reactions