An operation to delete unified AP and third party AP by names.
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/apService/deleteAp UnmodifiedThis resource has not been modified since the previous API version.
Request Payload Parameters
Attribute | Description |
---|---|
apName String[] |
An access point name |
Response Parameters
Attribute | Description |
---|---|
A list of access point names that fail in the operation |
|
operation AccessPointOperationEnum |
The name of the performed operation Allowed values: |
A list of access point names that succeed in the operation |
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/apService/deleteAp
<?xml version="1.0" ?>
<apCandidate>
<apNames>
<apName>String value</apName>
<apName>Another string value</apName>
</apNames>
</apCandidate>
Sample JSON Request Payload
https://localhost/webacs/api/v3/op/apService/deleteAp.json
{
"apCandidate" : {
"apNames" : {
"apName" : [ "String value", "Another string value" ]
}
}
}
Sample XML Response Payload
https://localhost/webacs/api/v3/op/apService/deleteAp
<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v3/op/apService/deleteAp" rootUrl="https://localhost/webacs/api/v3/op">
<apOperationResult>
<failure>
<failure>
<id>15</id>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</failure>
<failure>
<id>15</id>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</failure>
</failure>
<operation>DELETEAP</operation>
<success>
<success>
<id>15</id>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</success>
<success>
<id>15</id>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</success>
</success>
</apOperationResult>
</mgmtResponse>
Sample JSON Response Payload
https://localhost/webacs/api/v3/op/apService/deleteAp.json
{
"mgmtResponse" : {
"@requestUrl" : "https://localhost/webacs/api/v3/op/apService/deleteAp",
"@responseType" : "operation",
"@rootUrl" : "https://localhost/webacs/api/v3/op",
"apOperationResult" : [ {
"failure" : {
"failure" : [ {
"id" : 15,
"message" : "String value",
"name" : "String value",
"status" : "String value"
}, {
"id" : 15,
"message" : "String value",
"name" : "String value",
"status" : "String value"
} ]
},
"operation" : "DELETEAP",
"success" : {
"success" : [ {
"id" : 15,
"message" : "String value",
"name" : "String value",
"status" : "String value"
}, {
"id" : 15,
"message" : "String value",
"name" : "String value",
"status" : "String value"
} ]
}
} ]
}
}