Skip to main content
GET
/
service
/
{tenant_name}
/
static_route
Get all static routes by tenant
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/static_route \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "destination": "<string>",
      "enable": true,
      "distance": 128,
      "gateway_ip_address": "<string>",
      "gateway_interface": "<string>",
      "description": "<string>"
    }
  ],
  "count": 0,
  "total_count": 0
}

Authorizations

Authorization
string
header
required

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

Path Parameters

Query Parameters

limit
integer
default:0
offset
integer
default:0

Response

Successful Response

items
NBStaticRouteResponse · object[]
required
count
integer
default:0
total_count
integer
default:0