Cisco Prime Infrastructure API
Prime Infrastructure API Documentation

PUT apService/accessPoint

Modifies an Unified Access Point's name, location, controller affinity, or admin status. All parameters should be provided. If some parameter isn't specified it will be considered as an empty value.

Since Product Version: 2.2

Resource Information

Rate Limiting?

No

Sorting?

No

Paging?

No

Filtering?

No

Group Filtering?

No

Aggregation?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

PUT

API version v1 is deprecated

This API version has been deprecated. It will be removed in a future release of the product. Please develop new clients using the latest API version. Please modify your existing clients to use a later API version.

Resource URL

/webacs/api/v1/op/apService/accessPoint

Request Payload Parameters

Attribute Description

accessPointId long

ID used to identify the unified access point.

adminStatus boolean

Administrative status of the access point.

mapLocation String

Location of the access point.

name String

Name of the access point.

unifiedApInfo Arrow image AccessPointUnifiedDetails

Response Parameters

Attribute Description

jobName String

The unique job name for this job.

jobType String

The non-unique job type for this job.

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/v1/op/apService/accessPoint

<?xml version="1.0" ?>
<accessPoint>
  <accessPointId>2</accessPointId>
  <adminStatus>true</adminStatus>
  <mapLocation>String value</mapLocation>
  <name>String value</name>
  <unifiedApInfo>
    <primaryMwar>String value</primaryMwar>
    <primaryMwarAddress>
      <address>192.168.115.243</address>
    </primaryMwarAddress>
    <secondaryMwar>String value</secondaryMwar>
    <secondaryMwarAddress>
      <address>192.168.115.243</address>
    </secondaryMwarAddress>
    <tertiaryMwar>String value</tertiaryMwar>
    <tertiaryMwarAddress>
      <address>192.168.115.243</address>
    </tertiaryMwarAddress>
  </unifiedApInfo>
</accessPoint>

Sample JSON Request Payload

https://localhost/webacs/api/v1/op/apService/accessPoint.json

{
  "accessPoint" : {
    "accessPointId" : 2,
    "adminStatus" : true,
    "mapLocation" : "String value",
    "name" : "String value",
    "unifiedApInfo" : {
      "primaryMwar" : "String value",
      "primaryMwarAddress" : {
        "address" : "192.168.115.243"
      },
      "secondaryMwar" : "String value",
      "secondaryMwarAddress" : {
        "address" : "192.168.115.243"
      },
      "tertiaryMwar" : "String value",
      "tertiaryMwarAddress" : {
        "address" : "192.168.115.243"
      }
    }
  }
}

Sample XML Response Payload

https://localhost/webacs/api/v1/op/apService/accessPoint

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v1/op/apService/accessPoint" rootUrl="https://localhost/webacs/api/v1/op">
  <apJobInfo>
    <jobName>String value</jobName>
    <jobType>String value</jobType>
  </apJobInfo>
</mgmtResponse>

Sample JSON Response Payload

https://localhost/webacs/api/v1/op/apService/accessPoint.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op\/apService\/accessPoint",
    "@rootUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op",
    "apJobInfo" : {
      "jobName" : "String value",
      "jobType" : "String value"
    }
  }
}