Get Static Route Status (v2.2)
GET/v2.2/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/staticroutes/:static_route_id/status
Get the status of the static route.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
site_id stringrequired
The ID of the site.
element_id stringrequired
The ID of the element.
static_route_id stringrequired
The ID of the static route.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id string
The ID of the static route.
nexthops StateNextHop[]
The details of the next hop.
nexthop_ip string
The IP address of the next hop.
reachability_status boolean
The reachability status.
{
"id": "string",
"nexthops": [
{
"nexthop_ip": "string",
"reachability_status": true
}
]
}
Loading...