An operation to delete unified AP and third party AP.
Resource URL
/webacs/api/v1/op/apService/deleteAp
Since : 2.2
Request Payload Parameters
Response Parameters
ApOperationResultStatus[]
|
failure
|
A list of access point names that fail in the operation
|
String
|
message
|
A system generated message
|
String
|
name
|
|
String
|
status
|
An operation result status
|
|
AccessPointOperationEnum
|
operation
|
The name of the performed operation
Allowed values:
DELETEAP
|
ApOperationResultStatus[]
|
success
|
A list of access point names that succeed in the operation
|
String
|
message
|
A system generated message
|
String
|
name
|
|
String
|
status
|
An operation result status
|
|
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://szier-m8-106.cisco.com/webacs/api/v1/op/apService/deleteAp
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<apCandidate>
<apNames>
<apName>String value</apName>
</apNames>
</apCandidate>
Sample JSON Request Payload
https://szier-m8-106.cisco.com/webacs/api/v1/op/apService/deleteAp.json
{
"apCandidate" : {
"apNames" : {
"apName" : "String value"
}
}
}
Sample XML Response Payload
https://szier-m8-106.cisco.com/webacs/api/v1/op/apService/deleteAp
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mgmtResponse rootUrl="https://szier-m8-106.cisco.com/webacs/api/v1/op/" requestUrl="https://szier-m8-106.cisco.com/webacs/api/v1/op/apService/deleteAp" responseType="operation">
<apOperationResult>
<failure>
<failure>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</failure>
</failure>
<operation>DELETEAP</operation>
<success>
<success>
<message>String value</message>
<name>String value</name>
<status>String value</status>
</success>
</success>
</apOperationResult>
</mgmtResponse>
Sample JSON Response Payload
https://szier-m8-106.cisco.com/webacs/api/v1/op/apService/deleteAp.json
{
"mgmtResponse" : {
"@rootUrl" : "https : \/\/szier-m8-106.cisco.com\/webacs\/api\/v1\/op\/",
"@requestUrl" : "https : \/\/szier-m8-106.cisco.com\/webacs\/api\/v1\/op\/apService\/deleteAp",
"@responseType" : "operation",
"apOperationResult" : {
"failure" : {
"failure" : {
"message" : "String value",
"name" : "String value",
"status" : "String value"
}
},
"operation" : "DELETEAP",
"success" : {
"success" : {
"message" : "String value",
"name" : "String value",
"status" : "String value"
}
}
}
}
}