Get current HDR collections status
get
https://{managementIp}/rest/{version}/statistics/collections
Retrieves the current status of all Historical Data Records (HDR) collections and push receivers.
This API is only available for SBC and ESBC.
Request
Path Parameters
-
version(required): string
REST API version string.
Available values: v1.2Allowed Values:[ "v1.2" ]
Header Parameters
-
Authorization(required):
The value in the Authorization header must be the string "
Bearer {access token}
", where{access token}
is a valid, unexpired token received in response to a prior/rest/{version}/auth/token
request.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/xml
200 Response
OK - Requested data is returned in response body
Nested Schema : links
Type:
object
Nested Schema : messages
Type:
object
Nested Schema : collectionStatus
Type:
Show Source
object
-
groups: array
groups
-
push: object
push
-
pushReceivers: array
pushReceivers
-
status: string
Allowed Values:
[ "running", "stopped" ]
Nested Schema : push
Type:
Show Source
object
-
nextPush: string
Example:
2018-09-05T10:41:55.0-0400
-
subsequentPush: integer
Example:
15
Nested Schema : group
Type:
Show Source
object
-
bootState(required): string
Allowed Values:
[ "enabled", "disabled" ]
-
endTime(required): string
-
licensed: string
Allowed Values:
[ true, false ]
-
name(required): string
Example:
sip-sessions
-
startTime(required): string
startTime
Nested Schema : pushReceiver
Type:
Show Source
object
-
address: string
Example:
10.196.72.171
-
state: string
Allowed Values:
[ "reachable", "unreachable" ]
Example:reachable
400 Response
The request is malformed in some way or is missing required information and therefore cannot be processed.
Nested Schema : data
Type:
object
Nested Schema : items
Type:
Show Source
object
-
link: string
If available, a message with possible valid API URL(s) for the client to invokeExample:
Available URL(s) message string
401 Response
Unauthorized - Request lacks valid authentication credentials.
Nested Schema : data
Type:
object
Nested Schema : items
Type:
Show Source
object
-
link: string
If available, a message with possible valid API URL(s) for the client to invokeExample:
Available URL(s) message string
404 Response
Resource not found
Nested Schema : data
Type:
object
Nested Schema : items
Type:
Show Source
object
-
link: string
If available, a message with possible valid API URL(s) for the client to invokeExample:
Available URL(s) message string
Examples
Examples of Accessing the API
See Authenticate for how to acquire a token.
The following example shows how to get current HDR collections status using curl.
curl -X GET \
--header "Accept: application/xml" \
--header "Authorization: Bearer $TOKEN" \
"https://${SBCIP}/rest/v1.2/statistics/collections"
The following example shows how to get current HDR collections status using Python.
import requests
headers = { "Accept":"application/xml", "Authorization":"Bearer " + token }
url = "https://" + sbcip + "/rest/v1.2/statistics/collections"
resp = requests.get(url, headers=headers)
Example of the Response Body
The following example shows the contents of the response body in XML.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<response>
<data>
<collectionStatus>
<status>running</status>
<groups>
<group>
<name>temperature</name>
<bootState>disabled</bootState>
<startTime>now</startTime>
<endTime>never</endTime>
</group>
</groups>
<push>
<nextPush>2019-01-16T09:01:05-0500</nextPush>
<subsequentPushMinutes>5</subsequentPushMinutes>
</push>
<pushReceivers>
<pushReceiver>
<address>10.4.4.4</address>
<state>reachable</state>
</pushReceiver>
</pushReceivers>
</collectionStatus>
</data>
<messages/>
<links/>
</response>