An operation to delete unified AP and third party AP.
Since Product Version: 2.2
Resource URL
/webacs/api/v1/op/apService/deleteApRequest Payload Parameters
Type | Attribute Name | Description |
---|---|---|
String[] |
apName |
An access point name |
Response Parameters
Type | Attribute Name | Description |
---|---|---|
failure |
A list of access point names that fail in the operation |
|
AccessPointOperationEnum |
operation |
The name of the performed operation Allowed values:
|
success |
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://172.25.123.114/webacs/api/v1/op/apService/deleteAp
<?xml version="1.0" ?> <apCandidate> <apNames> <apName>String value</apName> </apNames> </apCandidate>
Sample JSON Request Payload
https://172.25.123.114/webacs/api/v1/op/apService/deleteAp.json
{ "apCandidate" : { "apNames" : { "apName" : "String value" } } }
Sample XML Response Payload
https://172.25.123.114/webacs/api/v1/op/apService/deleteAp
<?xml version="1.0" ?> <mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/"> <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://172.25.123.114/webacs/api/v1/op/apService/deleteAp.json
{ "mgmtResponse" : { "@responseType" : "operation", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/apService\/deleteAp", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/", "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" } } } } }