Modifies an existing WLAN template on the server. The template name must match an existing template.
Since Product Version: 2.2
Resource Information
Rate Limiting? |
Yes |
Sorting? |
No |
Paging? |
No |
Filtering? |
No |
Aggregation? |
No |
Response Formats |
xml json |
User Group |
NBI Write |
HTTP Methods |
PUT |
DevNet Discussions
Resource URL
/webacs/api/v3/op/wlanProvisioning/wlanTemplate UnmodifiedThis resource has not been modified since the previous API version.
Request Payload Parameters
Attribute | Description |
---|---|
adminStatus boolean |
Is the WLAN administratively enabled? |
broadcastSsidEnabled boolean |
Is SSID broadcasting enabled? |
interfaceName String |
Denotes the interface, or interface group, for this WLAN. See interfaceType to determine if this is an interface or interface group. |
interfaceType InterfaceMappingTypeEnum |
Denotes whether an interface or interface group is used for this interface. See interfaceName for the name of the interface or interface group. Allowed values: |
lanType LanTypeEnum |
Denotes the LAN type. Allowed values: |
profileName String |
Profile name of the WLAN. |
ssid String |
SSID of the WLAN. |
templateName String |
The name of the WLAN template. |
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Request Payload
https://localhost/webacs/api/v3/op/wlanProvisioning/wlanTemplate
<?xml version="1.0" ?>
<wlanTemplate>
<adminStatus>true</adminStatus>
<broadcastSsidEnabled>true</broadcastSsidEnabled>
<interfaceName>String value</interfaceName>
<interfaceType>INTERFACE</interfaceType>
<lanType>WIRELESS</lanType>
<profileName>String value</profileName>
<ssid>String value</ssid>
<templateName>String value</templateName>
</wlanTemplate>
Sample JSON Request Payload
https://localhost/webacs/api/v3/op/wlanProvisioning/wlanTemplate.json
{
"wlanTemplate" : {
"adminStatus" : true,
"broadcastSsidEnabled" : true,
"interfaceName" : "String value",
"interfaceType" : "INTERFACE",
"lanType" : "WIRELESS",
"profileName" : "String value",
"ssid" : "String value",
"templateName" : "String value"
}
}