Modifies an Access Point's name, location, controller affinity, or admin status.
Resource URL
/webacs/api/v1/op/apService/accessPoint
Since : 2.2
Request Payload Parameters
long
|
accessPointId
|
ID used to identify the access point.
|
boolean
|
adminStatus
|
Administrative status of the access point.
|
String
|
mapLocation
|
Location of the access point.
|
String
|
name
|
Name of the access point.
|
AccessPointUnifiedDetails
|
unifiedApInfo
|
|
String
|
primaryMwar
|
Primary controller this access point has affinity to.
|
InetAddress
|
primaryMwarAddress
|
IP address of the primary controller this access point has affinity to.
|
String
|
secondaryMwar
|
Secondary controller this access point has affinity to.
|
InetAddress
|
secondaryMwarAddress
|
IP address of the secondary controller this access point has affinity to.
|
String
|
tertiaryMwar
|
Tertiary controller this access point has affinity to.
|
InetAddress
|
tertiaryMwarAddress
|
IP address of the tertiary controller this access point has affinity to.
|
|
Response Parameters
String
|
jobName
|
The unique job name for this job.
|
String
|
jobType
|
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://szier-m8-106.cisco.com/webacs/api/v1/op/apService/accessPoint
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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://szier-m8-106.cisco.com/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://szier-m8-106.cisco.com/webacs/api/v1/op/apService/accessPoint
<?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/accessPoint" responseType="operation">
<apJobInfo>
<jobName>String value</jobName>
<jobType>String value</jobType>
</apJobInfo>
</mgmtResponse>
Sample JSON Response Payload
https://szier-m8-106.cisco.com/webacs/api/v1/op/apService/accessPoint.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\/accessPoint",
"@responseType" : "operation",
"apJobInfo" : {
"jobName" : "String value",
"jobType" : "String value"
}
}
}