Cisco Prime Infrastructure API
Prime Infrastructure 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.

Resource URL

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

Since : 2.2

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