Skip to main content
GET
/
service
/
{tenant_name}
/
route
Get the routes information for specific tenant
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/route \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "route_type": "static",
      "destination": "<string>",
      "gateway": "<string>",
      "distance": 128
    }
  ],
  "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

Response

Successful Response

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