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

PUT apService/accessPoint

Modifies an Unified Access Point. For API versions 1 and 2, all parameters should be specified. For API version 3, only the parameters desired to be changed and the ID need to be specified.

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

Resource URL

/webacs/api/v2/op/apService/accessPoint

Unmodified

This resource has not been modified since the previous API version.

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://10.64.88.203/webacs/api/v2/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://10.64.88.203/webacs/api/v2/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://10.64.88.203/webacs/api/v2/op/apService/accessPoint

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="../../../../../pages/common/login.jsp.html" rootUrl="https://10.64.88.203/webacs/api/v2/op">
  <apJobInfo>
    <jobName>String value</jobName>
    <jobType>String value</jobType>
  </apJobInfo>
</mgmtResponse>

Sample JSON Response Payload

https://10.64.88.203/webacs/api/v2/op/apService/accessPoint.json

{
  "mgmtResponse" : {
    "@requestUrl" : "../../../../../pages/common/login.jsp.html",
    "@responseType" : "operation",
    "@rootUrl" : "https://10.64.88.203/webacs/api/v2/op",
    "apJobInfo" : [ {
      "jobName" : "String value",
      "jobType" : "String value"
    } ]
  }
}