Network Discovery

Grow your footprint by analyzing network availability by utilizing our Building, Locations, and Cloud Providers APIs.

Validate building addresses

Validate any building in the world with a few parameters to see if Zayo is on net. Request an array of building addresses in a standard building format and you will either get matched or unmatched buildings. Matched buildings will return Zayo Network Status. Unmatched buildings might require alternative naming formats, otherwise, you can assume unmatched buildings are off net.

Once you have a Building Id, you can use the Locations route to get location-based information. A buildingId or locationId is required for quoting.

SecurityBearerToken or OAuthClientCredentials
Request
Request Body schema: application/json

An array of building objects that will be validated against Zayo's systems.

Array of objects
Responses
200

Success

400

Bad Request

post/services/location-management/v2/buildings/validation
Request samples
application/json
{
  • "buildings": [
    • {
      • "address": "8 Buckingham Ave",
      • "city": "Slough",
      • "subregion": "",
      • "countryCode": "GBR",
      • "postal": "SL1 4AX"
      },
    • {
      • "address": "60 Hudson Street",
      • "neighborhood": "Manhattan",
      • "city": "New York",
      • "subregion": "Manhattan",
      • "region": "New York",
      • "countryCode": "USA",
      • "postal": "10013"
      },
    • {
      • "address": "123 Test Street",
      • "neighborhood": "Test Neighborhood",
      • "city": "Boulder",
      • "subregion": "Test Subregion",
      • "region": "CO",
      • "countryCode": "USA",
      • "postal": "80303"
      }
    ]
}
Response samples
application/json
{
  • "apiVersion": "v2",
  • "data": {
    • "matchedAddresses": [
      • {
        • "buildingId": "a0W600000009mrkEAA",
        • "matched_address": "60 Hudson St, New York, 10013",
        • "address": "60 Hudson Street",
        • "neighborhood": null,
        • "city": "New York",
        • "subregion": null,
        • "region": null,
        • "country": "USA",
        • "postal": "10013",
        • "zayoNetworkStatus": "On Zayo Network",
        • "buildingClassification": "On-Net",
        • "competitiveInternetEnablements": "Yes",
        • "latitude": -74.00890867164877,
        • "longitude": 40.71790374632121
        },
      • {
        • "buildingId": "a0W60000002AmvsEAC",
        • "matched_address": "8 Buckingham Avenue, Slough, Berkshire, England, SL1 4",
        • "address": "8 Buckingham Ave",
        • "neighborhood": null,
        • "city": "Slough",
        • "subregion": null,
        • "region": null,
        • "country": "GBR",
        • "postal": "SL1 4AX",
        • "zayoNetworkStatus": "On Zayo Network",
        • "buildingClassification": null,
        • "competitiveInternetEnablements": "Yes",
        • "latitude": -0.6338168030935715,
        • "longitude": 51.52350290497991
        }
      ],
    • "unmatchedAddresses": [
      • {
        • "buildingId": null,
        • "address": "123 Test Street",
        • "neighborhood": null,
        • "city": "Boulder",
        • "subregion": null,
        • "region": "CO",
        • "country": "USA",
        • "postal": "80303",
        • "zayoNetworkStatus": null,
        • "message": "Unable to validate this address in the current format. Please reformat before resubmitting."
        }
      ]
    }
}

Get locations

View all locations for the specified building in the URL. Locations contain floor, room, and suite information as available, serviceability per product code, and network status. Locations are returned based on serviceability where most desirable locations are returned first.

Serviceability is represented by enabled and preferred. Enabled means Zayo can service that product at that location. Preferred means this location is Zayo's preferred location to service. For example, cross connects might not be required at preferred locations. There will only ever be 1 location for each preferred product, while several locations can be enabled for each product.

SecurityBearerToken or OAuthClientCredentials
Request
path Parameters
buildingId
required
string = 18 characters ^[a-zA-Z0-9]{18}$

buildingId returned from the validate building address route.

Example: a0W60000002BxA8EAK
query Parameters
productCode
Array of strings [ 0 .. 9 ] items unique

productCode query param will only return locations where the specified productCode values are enabled (and is required when enabled is populated).

Items Enum: "ETH-ELAN-M2M" "ETH-ELINE-NNI" "ETH-ELINE-P2P" "ETH-ELINE-UNI" "ETH-PDN-P2P" "IP-DIA" "IP-DIA-AGG" "IP-VPN" "WAVES-STD-P2P"
Example: productCode=ETH-ELINE-P2P,WAVES-STD-P2P
enabled
string
Default: "any"
Enum: "any" "all"
Example: enabled=any
Responses
200

Success

400

Bad Request

get/services/location-management/v2/building/{buildingId}/locations
Request samples
curl -i -X GET \
  'https://api.zayo.com/services/location-management/v2/building/{buildingId}/locations?productCode=ETH-ELINE-P2P%2CWAVES-STD-P2P&enabled=any' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response samples
application/json
{
  • "apiVersion": "v2",
  • "data": {
    • "buildingId": "a0W60000002BxA8EAK",
    • "address": "9417 Corporate Lake Dr, Tampa, Florida, 33634",
    • "zayoNetworkStatus": "On Zayo Network",
    • "locations": [
      • {
        • "locationName": "9417 Corporate Lake Dr/Fl-1/Rm-MMR",
        • "locationId": "a0b6000000Avil2AAB",
        • "networkStatus": "On Zayo Network",
        • "buildingClassification": "On-Net",
        • "competitiveInternetEnablement": "Yes",
        • "suite": null,
        • "floor": "1",
        • "room": "MMR",
        • "enabled": {
          • "ETH-ELAN-M2M": true,
          • "ETH-ELINE-NNI": true,
          • "ETH-ELINE-P2P": true,
          • "ETH-ELINE-UNI": true,
          • "ETH-PDN-P2P": false,
          • "IP-DIA": true,
          • "IP-DIA-AGG": true,
          • "IP-VPN": true,
          • "WAVES-STD-P2P": false
          },
        • "preferred": {
          • "ETH-ELAN-M2M": true,
          • "ETH-ELINE-NNI": true,
          • "ETH-ELINE-P2P": true,
          • "ETH-ELINE-UNI": true,
          • "ETH-PDN-P2P": false,
          • "IP-DIA": true,
          • "IP-DIA-AGG": true,
          • "IP-VPN": true,
          • "WAVES-STD-P2P": false
          }
        },
      • {
        • "locationName": "9417 Corporate Lake Dr/Fl-1/Rm-MPOE",
        • "locationId": "a0b4z00000QwxoRAAR",
        • "networkStatus": "Not on Zayo Network",
        • "buildingClassification": "On-Net",
        • "competitiveInternetEnablement": "Yes",
        • "suite": null,
        • "floor": "1",
        • "room": "MPOE",
        • "enabled": {
          • "ETH-ELAN-M2M": false,
          • "ETH-ELINE-NNI": false,
          • "ETH-ELINE-P2P": false,
          • "ETH-ELINE-UNI": false,
          • "ETH-PDN-P2P": false,
          • "IP-DIA": false,
          • "IP-DIA-AGG": false,
          • "IP-VPN": false,
          • "WAVES-STD-P2P": false
          },
        • "preferred": {
          • "ETH-ELAN-M2M": false,
          • "ETH-ELINE-NNI": false,
          • "ETH-ELINE-P2P": false,
          • "ETH-ELINE-UNI": false,
          • "ETH-PDN-P2P": false,
          • "IP-DIA": false,
          • "IP-DIA-AGG": false,
          • "IP-VPN": false,
          • "WAVES-STD-P2P": false
          }
        }
      ],
    • "messages": [ ]
    }
}

Get cloud sites

Search for cloud on-ramp locations based on productCodes, buildingIds, cloudProviders, and connectionTypes values to get over 200 cloud on-ramp options. Filter option values are case sentitive. Providers include - Amazon AWS, Google Cloud, Microsoft Azure / Office365, IBM Cloud, Salesforce, Twilio, and many more!

Cloud on-ramp locations are returned per building and grouped in the desinations array. Within the destinations array, cloud on-ramps are returned based on the demarc (floor, room, suite), product code, and then connection type. Once you get down to the connectionType level, you will see available bandwidths for that Connection Type, for that product, for that cloud on ramp/demarc. Zayo will provide Dedicated connections at all of our cloud on-ramp locations, but we don't support Hosted at all the locations.

We recommend you apply filters to get the specific data you need to place a quote, otherwise if you are mapping Zayo's cloud serviceability, feel free to send in an empty request object. Please note, there is not pagination with this route.

Please note: at this time only ETH-ELINE-UNI and ETH-ELINE-P2P product codes can be quoted with a cloudSite. You will apply cloudProvider key value pair from the destinations array, connectionType key value pair from the destinationDetails array, and locationId key value pair from the destinations array to your quote request.

SecurityBearerToken or OAuthClientCredentials
Request
Request Body schema: application/json

Apply filters to return a list of cloud sites to quote to available Zayo products. Filter options include - cloudProviders, connectionTypes, productCodes, and buildingIds. cloudProviders options are case-sensitive and include: Amazon AWS, Microsoft Azure / Office365, Google Cloud, Oracle Cloud, Microsoft Cloud for Government, IBM Cloud, Salesforce, Cisco Webex Edge Connect, Alibaba, OVH, Cloudflare, Accenture, ADISTA, AIS Business Cloud, Ajubeo, Artisan Infrastructure, Carpathia Hosting, DataBank Cloud Services, Day 1 Solutions, Enovance, Expedient, Flexential: FlexAnywhere, Fullsave, GROUPE RDI, Hosting.com, Ikoula, IntelePeer, Internap, Linkbynet, Lunavi Inc, NetDepot, Nimbix, Outscale, Oxalide, Packet, Phoenix NAP, QTS Cloud Services, RapidScale, Scale Matrix, StratoGen, The Faction Group, Twilio, Virtustream, Vitelity Cloud, VMware Cloud on AWS, Wasabi Cloud, Xtium.

object

Object to define filter options.

Responses
200

Success

400

Bad Request

post/services/quote-management/v2/sites/available-cloud-providers
Request samples
application/json
{
  • "filters": {
    • "productCodes": [
      • "ETH-ELINE-UNI"
      ],
    • "buildingIds": [
      • "a0W600000009moPEAQ"
      ],
    • "cloudProviders": [
      • "Google Cloud"
      ],
    • "connectionTypes": [
      • "Direct"
      ]
    }
}
Response samples
application/json
{
  • "apiVersion": "v2",
  • "data": [
    • {
      • "buildingId": "a0W60000002BG6REAW",
      • "buildingAddress": "15 Pioneer Walk, Singapore, 627753 Singapore",
      • "destinations": [
        • {
          • "building": "Equinix SG2",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-MPOE",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Asia Pacific (Signapore)",
          • "latitude": 1.32187,
          • "locationId": "a0b60000003MZCQAA4",
          • "longitude": 103.695274,
          • "region": "ap-southeast-1",
          • "zone": "EQSG2"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000008EahnEAC",
      • "buildingAddress": "800 Rue du Square-Victoria, Montreal, QC H4Z 1A1 Canada",
      • "destinations": [
        • {
          • "building": "eStruxture MTL-1",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-SS1/Rm-MMR1",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Canada (Central)",
          • "latitude": 45.500623,
          • "locationId": "a0b6000000EkkQDAAZ",
          • "longitude": -73.561876,
          • "region": "ca-central-1",
          • "zone": "NTM62"
          }
        ]
      },
    • {
      • "buildingId": "a0W600000009mo2EAA",
      • "buildingAddress": "21715 Filigree Ct, Ashburn, VA 20147 USA",
      • "destinations": [
        • {
          • "building": "Equinix DC2/DC11",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-Equinix",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US East (N. Virginia)",
          • "latitude": 39.0166517,
          • "locationId": "a0b60000006E5q2AAC",
          • "longitude": -77.4589872,
          • "region": "us-east-1",
          • "zone": "EQDC2"
          }
        ]
      },
    • {
      • "buildingId": "a0W600000009nMLEAY",
      • "buildingAddress": "350 E Cermak Rd, Chicago, IL 60616 USA",
      • "destinations": [
        • {
          • "building": "Lakeside Technology Center",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-5 or 6 or 8/Rm-Equinix",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US East (Ohio)",
          • "latitude": 41.853686,
          • "locationId": "a0b60000008c0KYAAY",
          • "longitude": -87.618249,
          • "region": "us-east-2",
          • "zone": "EQC50"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002AmytEAC",
      • "buildingAddress": "250 Front St W, Toronto, ON M5V 3G5 Canada",
      • "destinations": [
        • {
          • "building": "Allied 250 Front St W",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-B2/Rm-South MMR",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Canada (Central)",
          • "latitude": 43.64459,
          • "locationId": "a0b6000000G6BthAAF",
          • "longitude": -79.38801,
          • "region": "ca-central-1",
          • "zone": "151FS"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002AmvsEAC",
      • "buildingAddress": "8 Buckingham Ave, Slough, SL1 4AX United Kingdom",
      • "destinations": [
        • {
          • "building": "Equinix LD5",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-0601MC1.1",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (Ireland)",
          • "latitude": 51.5222611,
          • "locationId": "a0b60000003LBlYAAW",
          • "longitude": -0.6294121,
          • "region": "eu-west-1",
          • "zone": "EQLD5"
          },
        • {
          • "building": "Equinix LD5",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-0601MC1.1",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": false
                  }
                }
              }
            ],
          • "destinationName": "Europe (London)",
          • "latitude": 51.5222611,
          • "locationId": "a0b60000003LBlYAAW",
          • "longitude": -0.6294121,
          • "region": "eu-west-2",
          • "zone": "EQLD5"
          }
        ]
      },
    • {
      • "buildingId": "a0W600000009nFhEAI",
      • "buildingAddress": "2001 6th Ave, Seattle, WA 98121 USA",
      • "destinations": [
        • {
          • "building": "Westin Building",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-12/Ste-1200",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US West (Oregon)",
          • "latitude": 47.6143693,
          • "locationId": "a0b60000003Ku54AAC",
          • "longitude": -122.3387104,
          • "region": "us-west-2",
          • "zone": "SQSE2"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000000BNQYEA4",
      • "buildingAddress": "624 S Grand Ave, Los Angeles, CA 90017 USA",
      • "destinations": [
        • {
          • "building": "One Wilshire",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-4/Rm-MMR",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US West (N. California)",
          • "latitude": 34.047905,
          • "locationId": "a0b60000003Ku11AAC",
          • "longitude": -118.255571,
          • "region": "us-west-1",
          • "zone": "CSOW"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002AnABEA0",
      • "buildingAddress": "114 rue Ambroise Croizat, Saint-Denis, 93200 France",
      • "destinations": [
        • {
          • "building": "Equinix PA2/PA3, Reliance, zColo Saint Denis",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-G/Rm-120GS16 (Icare)",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (Paris)",
          • "latitude": 48.927223,
          • "locationId": "a0b60000008en3WAAQ",
          • "longitude": 2.350562,
          • "region": "eu-west-3",
          • "zone": "EQPA3"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000000A0DIEA0",
      • "buildingAddress": "910 15th St, Denver, CO 80202 USA",
      • "destinations": [
        • {
          • "building": "Denver Gas & Electric",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-3/Ste-350/Rm-MMR",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": false
                  }
                }
              }
            ],
          • "destinationName": "US West (Oregon)",
          • "latitude": 39.74556,
          • "locationId": "a0b60000000TURgAAO",
          • "longitude": -104.995682,
          • "region": "us-west-2",
          • "zone": "CSDE1"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002An1MEAS",
      • "buildingAddress": "227 Marsh Wall, London, E14 9SD United Kingdom",
      • "destinations": [
        • {
          • "building": "Digital Realty Sovereign House",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-3/Rm-MMR 2",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (London)",
          • "latitude": 51.499894532300985,
          • "locationId": "a0b60000003LGd8AAG",
          • "longitude": -0.011129790474255729,
          • "region": "eu-west-2",
          • "zone": "TCSH"
          },
        • {
          • "building": "Digital Realty Sovereign House",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-3/Rm-MMR 2",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (Ireland)",
          • "latitude": 51.499894532300985,
          • "locationId": "a0b60000003LGd8AAG",
          • "longitude": -0.011129790474255729,
          • "region": "eu-west-1",
          • "zone": "TCSH"
          }
        ]
      },
    • {
      • "buildingId": "a0W600000009ypzEAA",
      • "buildingAddress": "11 Great Oaks Blvd, San Jose, CA 95119 USA",
      • "destinations": [
        • {
          • "building": "Equinix SV1",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-Equinix",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US West (N. California)",
          • "latitude": 37.241589,
          • "locationId": "a0b60000000DoPKAA0",
          • "longitude": -121.783319,
          • "region": "us-west-1",
          • "zone": "EQSV5"
          }
        ]
      },
    • {
      • "buildingId": "a0W600000009mrjEAA",
      • "buildingAddress": "32 Avenue Of The Americas, New York, NY 10013 USA",
      • "destinations": [
        • {
          • "building": "32 Avenue Of The Americas",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-7/Ste-Coresite/Rm-700",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "US East (N. Virginia)",
          • "latitude": 40.719979,
          • "locationId": "a0b60000000VmskAAC",
          • "longitude": -74.004689,
          • "region": "us-east-1",
          • "zone": "CS32A"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002AJTAEA4",
      • "buildingAddress": "2972 Stender Way, Santa Clara, CA 95054 USA",
      • "destinations": [
        • {
          • "building": "Coresite SV4",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-2/Rm-212A",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": false
                  }
                }
              }
            ],
          • "destinationName": "US West (N. California)",
          • "latitude": 37.3762704,
          • "locationId": "a0b60000006I5WQAA0",
          • "longitude": -121.9706989,
          • "region": "us-west-1",
          • "zone": "CSSV4"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002An9CEAS",
      • "buildingAddress": "137 Boulevard Voltaire, Paris, 75011 France",
      • "destinations": [
        • {
          • "building": "Telehouse 2",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-2/Rm-22.07",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (Frankfurt)",
          • "latitude": 48.8562758,
          • "locationId": "a0b60000008eiILAAY",
          • "longitude": 2.3835683,
          • "region": "eu-central-1",
          • "zone": "THV52"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002AnGSEA0",
      • "buildingAddress": "Kleyerstraße 88-90, Frankfurt am Main, 60326 Germany",
      • "destinations": [
        • {
          • "building": "Equinix FR5, Itenos",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-G/Rm-Colo",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Europe (Frankfurt)",
          • "latitude": 50.09914717148319,
          • "locationId": "a0b6000000EqsfLAAR",
          • "longitude": 8.632502551280991,
          • "region": "eu-central-1",
          • "zone": "EQFA5"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000002EI8EEAW",
      • "buildingAddress": "6327 NE Evergreen Pkwy - Bldg C, Hillsboro, OR 97124 USA",
      • "destinations": [
        • {
          • "building": "EdgeConnex POR01",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-104 MMR:2",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": false
                  }
                }
              }
            ],
          • "destinationName": "US West (Oregon)",
          • "latitude": 45.551671,
          • "locationId": "a0b6000000G5qDSAAZ",
          • "longitude": -122.915335,
          • "region": "us-west-2",
          • "zone": "ECPO1"
          }
        ]
      },
    • {
      • "buildingId": "a0W60000000ArT1EAK",
      • "buildingAddress": "12100 Sunrise Valley Dr, Reston, VA 20191 USA",
      • "destinations": [
        • {
          • "building": "Coresite Reston VA1",
          • "cloudProvider": "Amazon AWS",
          • "demarc": "Fl-1/Rm-CR-8",
          • "destinationDetails": [
            • {
              • "productCode": "ETH-ELINE-UNI",
              • "aggregatedBandwidth": "No",
              • "connectionType": {
                • "hosted": {
                  • "bandwidths": [
                    • "10Mb",
                    • "20Mb",
                    • "30Mb",
                    • "40Mb",
                    • "50Mb",
                    • "60Mb",
                    • "70Mb",
                    • "80Mb",
                    • "90Mb",
                    • "100Mb",
                    • "200Mb",
                    • "300Mb",
                    • "400Mb",
                    • "500Mb",
                    • "600Mb",
                    • "700Mb",
                    • "800Mb",
                    • "900Mb",
                    • "1G",
                    • "2G",
                    • "3G",
                    • "5G",
                    • "250Mb"
                    ],
                  • "evcEnabled": true
                  }
                }
              }
            ],
          • "destinationName": "Fl-1/Rm-CR-8",
          • "latitude": 38.950516,
          • "locationId": "a0b60000003NUHJAA4",
          • "longitude": -77.364571,
          • "region": "us-east-1",
          • "zone": "CSVA1"
          }
        ]
      }
    ]
}