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

PUT apService/deleteAp

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

PUT

An operation to delete unified AP and third party AP.

Since Product Version: 2.2

Resource URL

/webacs/api/v1/op/apService/deleteAp

Request Payload Parameters

Type Attribute Name Description

String[]

apName

An access point name

Response Parameters

Type Attribute Name Description

ApOperationResultStatus[]

failure

A list of access point names that fail in the operation

AccessPointOperationEnum

operation

The name of the performed operation

Allowed values:

  • DELETEAP

ApOperationResultStatus[]

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