Returns a list of of available PoPs to be used with inbound routes. From the list, you can then apply them to your inbound routes via Create an Inbound Route.
Endpoint
GET /routes/edge_strategiesResponse Fields
On success, the HTTP status code in the response header is 200 OK and the response body contains an array of objects in JSON format that describe the different Edge Strategies.
-
data
arrayAn array of edge strategy objects individually composed of:
-
attributes
Object composed of attributes associated with an edge strategy:
description A description of the edge strategy.
firewall_rules Indicates the IP range that needs to be whitelisted in customers firewall to allow inbound traffic.
name The name of the edge strategy.
naptr the Name Authority Pointer for the edge strategy. See the definition here.
-
id
integerUnique identifier of the edge strategy. This is what is specified when creating a route.
-
type
stringThis will always be edge_strategy.
Example Request
GET /v2/routes/edge_strategies HTTP/1.1
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Example Request
curl -X GET https://api.flowroute.com/v2/routes/edge_strategies -u accessKey:secretKey
Example Responses
200 OK
{
"data": [
{
"attributes": {
"description": "Data will be sent preferentially from our edge systems in North Virginia. We will fall back to other regions if necessary.",
"firewall_rules": "34.226.36.32/28, 34.226.36.32-34.226.36.47",
"name": "US-East-VA",
"naptr": "us-east-va.sip.flowroute.com"
},
"id": 4,
"type": "edge_strategy"
},
{
"attributes": {
"description": "Data will be sent preferentially from our edge systems in Oregon. We will fall back to other regions if necessary.",
"firewall_rules": "34.210.91.112/28, 34.210.91.112-34.210.91.127",
"name": "US-West-OR",
"naptr": "us-west-or.sip.flowroute.com"
},
"id": 3,
"type": "edge_strategy"
},
{
"attributes": {
"description": "Data will be sent preferentially from our edge systems in Hong Kong. We will fall back to other regions if necessary.",
"firewall_rules": "16.163.86.112/30, 16.163.86.112-16.163.86.115",
"name": "AP-East-HK",
"naptr": "ap-east-hk.sip.flowroute.com"
},
"id": 8,
"type": "edge_strategy"
},
{
"attributes": {
"description": "Data will be sent preferentially from our edge systems in Frankfurt Germany. We will fall back to other regions if necessary.",
"firewall_rules": "3.71.103.56/30, 3.71.103.56-3.71.103.59",
"name": "EU-Central-FRA",
"naptr": "eu-central-fra.sip.flowroute.com"
},
"id": 11,
"type": "edge_strategy"
},
],
"links": {
"self": "https://api.flowroute.com/v2/routes/edge_strategies"
}
}