Logo
Unifi Controller API Documentation

/stat/sysinfo

GET {{url}}/proxy/network/api/s/{{site}}/stat/sysinfo

Returns a list of all the project entities associated with your company.

Note: - officeLocationId will only be present if the project is associated with an Office Location. - modelIds will contain an array of the Model entities currently associated with the project. These can be retrieved with the GET /models/{id} action discussed later. - pins contains a url which can be used with the GET /projects/{id}/pins action to retrieve the library and channel ids for the sources that are pinned to the Project.

Output: ```json { type: object, properties: { projectId: { type: string }, name: { type: string }, analytics: { type: boolean }, officeLocationId: { type: string }, phase: { type: string, enum: [Active, On Hold, Archived] }, designPhase: { type: string, enum: [",SD,DD,CD,CA] }, modelIds: { type:array, items: { type:string } }, pins: { type:object, properties: { href: { type:string } } } }, required: [name,analytics,phase,designPhase"] }

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 




RESPONSES

status





Curl
curl -X GET 'url/proxy/network/api/s/site/stat/sysinfo'

ENDPOINTS