Modifies an Access Point's name, location, controller affinity, or admin status.
Since Product Version: 2.2
Resource URL
/webacs/api/v1/op/apService/accessPointRequest Payload Parameters
Type | Attribute Name | Description |
---|---|---|
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. |
unifiedApInfo |
|
Response Parameters
Type | Attribute Name | Description |
---|---|---|
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://172.25.123.114/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://172.25.123.114/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://172.25.123.114/webacs/api/v1/op/apService/accessPoint
<?xml version="1.0" ?> <mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/"> <apJobInfo> <jobName>String value</jobName> <jobType>String value</jobType> </apJobInfo> </mgmtResponse>
Sample JSON Response Payload
https://172.25.123.114/webacs/api/v1/op/apService/accessPoint.json
{ "mgmtResponse" : { "@responseType" : "operation", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/apService\/accessPoint", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/", "apJobInfo" : { "jobName" : "String value", "jobType" : "String value" } } }