Deploy a MAC filter to WLAN controllers.
Since Product Version: 3.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/v1/op/macFilter/deployRequest Payload Parameters
Attribute | Description |
---|---|
controllerIds Long[] |
List of WLAN controller IDs to deploy a MAC filter. |
templateName String |
Name of the MAC filter template. |
Response Parameters
Attribute | Description |
---|---|
jobName String |
The job name which is created by the system. |
jobType String |
The job type which is created by the system. |
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/v1/op/macFilter/deploy
<?xml version="1.0" ?>
<macFilterDeployCommand>
<controllerIds>
<controllerId>15</controllerId>
</controllerIds>
<templateName>String value</templateName>
</macFilterDeployCommand>
Sample JSON Request Payload
https://localhost/webacs/api/v1/op/macFilter/deploy.json
{
"macFilterDeployCommand" : {
"controllerIds" : {
"controllerId" : 15
},
"templateName" : "String value"
}
}
Sample XML Response Payload
https://localhost/webacs/api/v1/op/macFilter/deploy
<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v1/op/macFilter/deploy" rootUrl="https://localhost/webacs/api/v1/op">
<macFilterJobResult>
<jobName>String value</jobName>
<jobType>String value</jobType>
</macFilterJobResult>
</mgmtResponse>
Sample JSON Response Payload
https://localhost/webacs/api/v1/op/macFilter/deploy.json
{
"mgmtResponse" : {
"@responseType" : "operation",
"@requestUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op\/macFilter\/deploy",
"@rootUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op",
"macFilterJobResult" : {
"jobName" : "String value",
"jobType" : "String value"
}
}
}