GET /API/RECORDINGNODE
Search for recording node(s) within the search criteria.
QUERY STRING PARAMETERS
| maxresults optional | The maximum amount of records to return. The default value is 100 and maximum value is also 100. |
|---|---|
| sid optional | Only return records matching this unique machines sid. |
RESULT CODE
| 200 | OK |
|---|---|
| 401 | Unauthorized |
| 406 | SSL must be used |
| 500 | Server Error |
RESULT BODY
| servername | The machine name. |
|---|---|
| sid | The unique machine sid. |
| operatingsystem | The operating system name and version. |
| cpu | The machine CPU. |
| uptimeseconds | The amount of time the machine had been up in seconds. |
| currentdatetimeutc | The machines current date/time. |
| totalmemorymb | The total amount of memory installed in the machine. |
| usedmemorymb | The amount of memory used in the machine. |
| totalhddmb | The amount of hard drive space available. |
| usedhddmb | The amount of hard drive space used. |
| handsetregistrations | All of the handset registrations currently detected. |
| uploadspending | The amount of calls still waiting for upload. |
EXAMPLE REQUEST
Example;-
GET
https://api.calln.com/api/recordingnode
Result;-
200 (OK)
[{"servername":"PJWS","sid":"S-1-5-21-4244829240-1721692983-93607660","operatingsystem":"Microsoft Windows Server 2008 R2 Enterprise 64bit","cpu":"Intel(R) Core(TM) i7-3960X CPU @ 3.30GHz","uptimeseconds":1033074,"currentdatetimeutc":"","totalmemorymb":65475,"usedmemorymb":45558,"totalhddmb":434890,"usedhddmb":311068,"uploadspending":0}]
USING CURL
curl "https://api.calln.com/api/recordingnode" -H "Authorization: Basic username:password | base64" -X GET

