Modifies an existing WLAN template on the server. The template name must match an existing template.
Since Product Version: 2.2
Resource URL
/webacs/api/v1/op/wlanProvisioning/wlanTemplateRequest Payload Parameters
Type | Attribute Name | Description |
---|---|---|
boolean |
adminStatus |
|
boolean |
broadcastSsidEnabled |
|
String |
interfaceName |
|
InterfaceMappingTypeEnum |
interfaceType |
Allowed values:
|
LanTypeEnum |
lanType |
Allowed values:
|
String |
profileName |
|
String |
ssid |
|
String |
templateName |
|
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://172.25.123.114/webacs/api/v1/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://172.25.123.114/webacs/api/v1/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" } }