POST
/
wan-tunnels
/
{tunnel}
/
int-ping-stats
curl --request POST \
  --url https://api.altostrat.io/wan-tunnels/{tunnel}/int-ping-stats \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from": "2023-11-07T05:31:56Z",
  "to": "2023-11-07T05:31:56Z"
}'
{
  "avg_jitter": 123,
  "avg_packet_loss": 123,
  "max_jitter": 123,
  "max_packet_loss": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tunnel
string
required

Tunnel external ID

Body

application/json

StatsRangeRequest specifying from/to date range

The body is of type object.

Response

200
application/json

Returns object { avg_jitter, avg_packet_loss, max_jitter, max_packet_loss }

The response is of type object.