Cisco Evolved Programmable Network Manager API
Evolved Programmable Network Manager API Documentation

PUT wlanProvisioning/wlanTemplate

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

PUT

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/wlanTemplate

Request Payload Parameters

Type Attribute Name Description

boolean

adminStatus

boolean

broadcastSsidEnabled

String

interfaceName

InterfaceMappingTypeEnum

interfaceType

Allowed values:

  • INTERFACE
  • INTERFACEGROUP

LanTypeEnum

lanType

Allowed values:

  • WIRELESS
  • GUEST
  • REMOTE

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"
  }
}