Cisco Prime Infrastructure API
Prime Infrastructure API Documentation
GET_WLCUtilizations

GET WLCUtilizations

Resource Information

Rate Limiting?

Yes

Sorting?

Yes

Paging?

Yes

Filtering?

Yes

Response Formats

xml

json

HTTP Methods

GET

Represents the latest CPU and memory utilization collected from a WLAN controller.

Resource URL

/webacs/api/v1/data/WLCUtilizations

Response Parameters

Type Attribute Name Description

long

collectionTime

unix binary time on the server when the collection was performed.

int

cpuUtilization

String

ipAddress

Wlan Controller IP address

int

memoryFree

memory free

int

memoryUsed

memory used

int

memoryUtilization

String

name

Wlan controller name

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 Payload

https://172.19.31.161/webacs/api/v1/data/WLCUtilizations/42

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<queryResponse rootUrl="/webacs/data" requestUrl="https://172.19.31.161/webacs/api/v1/data/WLCUtilizations/42" responseType="getEntity">
    <entity url="/webacs/data/className/15" type="className" dtoType="wLCUtilizationsDTO_$$_javassist_2950">
        <wlcUtilizationsDTO id="15" displayName="String value">
            <collectionTime>2</collectionTime>
            <cpuUtilization>1</cpuUtilization>
            <ipAddress>String value</ipAddress>
            <memoryFree>1</memoryFree>
            <memoryUsed>1</memoryUsed>
            <memoryUtilization>1</memoryUtilization>
            <name>String value</name>
        </wlcUtilizationsDTO>
    </entity>
</queryResponse>

Sample JSON Payload

https://172.19.31.161/webacs/api/v1/data/WLCUtilizations/42.json

{
  "queryResponse" : {
    "@rootUrl" : "\/webacs\/data",
    "@requestUrl" : "https : \/\/172.19.31.161\/webacs\/api\/v1\/data\/WLCUtilizations\/42",
    "@responseType" : "getEntity",
    "entity" : {
      "@url" : "\/webacs\/data\/className\/15",
      "@type" : "className",
      "@dtoType" : "wLCUtilizationsDTO_$$_javassist_2950",
      "wlcUtilizationsDTO" : {
        "@id" : "15",
        "@displayName" : "String value",
        "collectionTime" : 2,
        "cpuUtilization" : 1,
        "ipAddress" : "String value",
        "memoryFree" : 1,
        "memoryUsed" : 1,
        "memoryUtilization" : 1,
        "name" : "String value"
      }
    }
  }
}