Query the connection count of the account over a time range.Maximum 7 days per query;
Returns the connection count at each data point.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Request Code Samples
curl --location 'https://server.711proxy.com/wapi/monitor/connection_count/?from=undefined&to=undefined' \
--header 'Authorization: Bearer <token>'
Responses
Query succeeded (business errors also return HTTP 200, distinguished by code)
{
"code": 200,
"message": "success.",
"results": [
{
"timestamp": 1724688000,
"count": 128
}
]
}
Modified at 2026-09-01 09:27:17