Introduction

Welcome! This is the API reference for the NetFoundry Network Management Service (v2), a lexicon of all possible API operations and their parameters. More conceptually and procedurally oriented guides and code samples may be found by visiting the Developer Portal.

Overview

HTTP verbs

NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP verbs.

Verb Usage

GET

Used to retrieve a resource

POST

Used to create a new resource

PUT

Used to update an existing resource, full updates only

PATCH

Used to update an existing resource, partial updates

DELETE

Used to delete an existing resource

HTTP status codes

NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP status codes.

Status code Usage

200 OK

The actual response will depend on the request method used. In a GET request, the response will contain an entity corresponding to the requested resource. In a POST request, the response will contain an entity describing or containing the result of the action.

201 Created

The request has been fulfilled and resulted in a new resource being created.

202 Accepted

The request has been accepted and is being processed asynchronously Standard response for successful HTTP requests which invoke back-end services.

204 No Content

The server successfully processed the request, but is not returning any content.

400 Bad Request

The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).

401 Unauthorized

The request lacks valid authentication credentials for the target resource.

403 Forbidden

The request is authenticated with valid credentials however that set of credentials is not authorized to access this resource.

404 Not Found

The requested resource could not be found but may be available again in the future. Subsequent requests by the client are permissible.

Pagination

Paginated services will accept the following optional request parameters:

Table 1. Request parameters
Path Type Optional Description

page

Integer

true

Page you want to retrieve, 0 indexed and defaults to 0.

size

Integer

true

Size of the page you want to retrieve, defaults to 1000.

sort

String

true

Sort a list of resources by one or more of their properties e.g. ?sort=firstname,asc&sort=lastname,desc. The default order is asc.

Pagination response has following structure:

Table 2. Response structure
Path Type Optional Description

content

Array[Object]

false

Actual items.

totalElements

Integer

false

Total count.

totalPages

Integer

false

Total pages with current page size.

last

Boolean

false

If this page is the last one.

numberOfElements

Integer

false

Actual size of content array (number of items).

first

Boolean

false

If this page is the first one.

sort

Object

true

Sort information object.

size

Integer

false

Requested size of the page.

number

Integer

false

Page number.

empty

booloean

false

If this page is empty.

Content Types

You may request a content type or alternative representation or both for a resource or list of resources with the Accept header.

Request a Content Type

The default content type of a response is HAL+JSON when the Accept header is absent from the request. A table describing available types is below. Here’s an example of requesting a particular endpoint by ID as YAML.

Request
GET /core/v2/endpoints/{{endpointId}} HTTP/1.1
Accept: application/x-yaml
Response
id: "273a915a-50e4-4994-891e-56a33ce6449e"
ownerIdentityId: "6526771d-d0b4-4325-835a-b57caaa698dd"
createdBy: "6526771d-d0b4-4325-835a-b57caaa698dd"
createdAt:
  nano: 448425000
  epochSecond: 1616076528
updatedAt:
  nano: 661920000
  epochSecond: 1623109454
deletedBy: null
deletedAt: null
networkId: "5611d56c-cb91-4b8f-b658-9e066092ff0a"
zitiId: "uIWXyl94U"
name: "ACME Endpoint1"
typeId: "5b53fb49-51b1-4a87-a4e4-edda9716a970"
appId: null
appVersion: null
branch: "main"
revision: "80ece9482fdd"
type: "ziti-sdk-golang"
version: "v0.15.13"
arch: "amd64"
os: "darwin"
osRelease: "17.7.0"
osVersion: "Darwin Kernel Version 17.7.0: Thu Jun 21 22:53:14 PDT 2018; root:xnu-4570.71.2~1/RELEASE_X86_64"
hasApiSession: false
hasEdgeRouterConnection: false
sessionIdentityId: null
syncId: null
syncResourceId: null
attributes:
  - "#workFromAnywhere"
sessionActive: true
jwt: null
mfaEnabled: false
jwtExpiresAt: null
Notation MIME Type Description

HAL+JSON (default)

application/hal+json

If you request a single resource by ID then the top level of the response will describe that resource and have _links to related resources.

If you request a list of resources then response will have _embedded.{{type}}List where {{type}} is the type of resource e.g. endpointList and _links to resources that are related to the list, and each element will have _links to resources related to that individual resource. If there’s not at least one resource in the list, or when then the key _embedded will not be present.

JSON

application/json

Single resource: response is a JSON dictionary describing the resource

List of resources: response is a JSON list where each element describes an individual resource. For embedded resources in non-HAL formats, the _embedded key is as described above but no _links keys will be present. Deprecation: Non-HAL formats additionally have a deprecated format for embedded resources where the embedded resources are returned as keys on the resource instead of contained within an _embedded key. Entries returned this way will always be returned as collections of resources regardless of whether or not the key implies a collection, e.g. host vs hosts.

YAML

application/x-yaml

Single resource: response is a YAML dictionary describing the resource

List of resources: response is a YAML list where each element describes an individual resource.

CSV

text/csv

Comma-separated format where the first line is composed of column headers and subsequent lines each represent one resource.

Request a Representation

A representation is a way of filtering and transforming the properties that are returned for each resource. The default representation includes all resource properties. There is one alternative representation available at this time: the create representation includes only the properties that are necessary to create an identical resource. This is useful for things like as-code snapshots and cloning resources. You may append the as=create parameter to the default MIME type to change only the representation of the resources in the response.

Request
GET /core/v2/endpoints?networkId={{networkId}} HTTP/1.1
Accept:application/hal+json;as=create
Response
{
    "_embedded": {
        "createEndpointList": [
            {
              "name": "ACME Endpoint1",
              "enrollmentMethod": {
                "ott": true,
                "updb": null,
                "ottca": null
              },
              "attributes": [
                "#workFromAnywhere"
              ],
              "_links": {
                "network": {
                  "href": "https://gateway.production.netfoundry.io/core/v2/networks/5611d56c-cb91-4b8f-b658-9e066092ff0a",
                  "title": "ACME Network",
                  "profile": "parent"
                },
                "self": {
                  "href": "https://gateway.production.netfoundry.io/core/v2/endpoints/273a915a-50e4-4994-891e-56a33ce6449e"
                }
              }
            }
        ]
    }
}
Parameter Value Description

as

create

Only return the properties necessary to create the same resource.

Embed Child Resources

When requesting an individual or list of resources you may additionally request child resources be embedded in the response by sending query parameter embed=all or embed={{child}}. The valid names for child resources are the keys in _links, except things that are not children like self, network. The table below details how the format of the embedded lists varies depending upon the requested content-type. Embedding is always one level deep. Put another way, the network is like the trunk which may embed branch lists (e.g. edge routers), and branches may embed individual leaves (e.g. the edge router’s host).

Request

This example requests that the "edge-routers" child resource list be embedded in the response that describes a particular network.

GET /core/v2/networks/${networkId}?embed=edge-routers
Accept: application/hal+json
Response

The full response would be prohibitively verbose, and so this template will demonstrate the response structure for a single resource with embedded child list "edge-routers".

{
  {{ network properties }},
  "_embedded": {
    "edge-routers": {{ list of edge routers }}
  },
  "_links": {{ dictionary of related resources}}
}
Request

This example requests the "host" resource be embedded in each element of the list of edge routers

GET /core/v2/edge-routers?networkId=${networkId}&embed=host
Accept: application/hal+json
Response

The full response would be prohibitively verbose, and so this template will demonstrate the response structure for a list of resources with embedded child "host".

{
  "_embedded": {
    "edgeRouterList": [
      {
        {{ edge router 1 properties }},
        "_links": {{ edge router 1 links }},
        "_embedded": {
          "host": {{ edge router 1 host's properties }}
        }
      },
      {
        {{ edge router 2 properties }},
        "_links": {{ edge router 2 links }},
        "_embedded": {
          "host": {{ edge router 2 host's properties }}
        }
      }
    ]
  },
  "_links": {{ edge router list's links }},
  "page": {
    "size": 3500,
    "totalElements": 2,
    "totalPages": 1,
    "number": 0
  }
}
Notation MIME Type Embedded Format

HAL+JSON (default)

application/hal+json

The response has key _embedded which will itself have keys for each type of resource. For example, _embedded.endpoints and _embedded."edge-routers" are typical when requesting an embedded list of endpoints or edge routers for a particular network or list of networks.

JSON

application/json

Each requested, embedded list will appear in a top-level key e.g. .endpoints and ."edge-routers".

YAML

application/x-yaml

Each requested, embedded list will appear in a top-level key where the resource type has been transposed from kebab-case to camel-case e.g. edge-routers becomes top-level key edgeRouters.

CSV

text/csv

Heterogeneous embedded resources can not be expressed as CSV because they would require different column headers.

Select Resource Properties

When requesting an individual or list of resources you may additionally request only certain properties be included in the response by sending an alternate 'accept' header. The properties are specified as a header parameter named includeProperties, the properties requested should be separated by | (pipe).

All requested properties are returned, null values included, as long as the property exists on the requested resource.

The includeProperties parameter supports nested properties using "dot notation" with ant style patterns, examples are:

  • object.name would include only the name property of the object.

  • object.object2.name would include only the name property of object2 nested inside object.

  • object.* includes all direct properties of object.

  • object.** includes all properties of object and any nested object inside of object.

Request

This example request would return only the property’s id, zitiId, and networkId.

GET /core/v2/networks/${networkId}
Accept: application/json;includeProperties=id|zitiId|networkId
Response
{
  "id", "{{ the id of the resource }}",
  "zitiId", "{{ the ziti id of the resource }}",
  "networkId", "{{ the id of network this resource belongs to }}",
}
Request

This example request would return only the property’s id and status.

GET /core/v2/edge-routers
Accept: application/hal+json;includeProperties=id|status
Response
{
  "_embedded": {
    "edgeRouterList": [
      {{ edge router 1 properties }}
      {
        "id", "{{ the id of the resource }}",
        "status", "{{ current status of the edge routers }}",
        "_links": "{{ dictionary of related resources for this resource }}"
      },
      {{ edge router 2 properties }}
      {
        "id", "{{ the id of the resource }}",
        "status", "{{ current status of the edge routers }}",
        "_links": "{{ dictionary of related resources for this resource }}"
      }
    ]
  },
  "_links": "{{ dictionary of edge routers related resources }}",
  "page": {
    "size": 3500,
    "totalElements": 2,
    "totalPages": 1,
    "number": 0
  }
}
Request

This example request would return the name of the network and all nested properties of the networkController but nothing else. Some properties have been omitted from the example output for brevity.

GET /core/v2/networks/${networkId}?embed=networkController
Accept: application/json;includeProperties=name|networkController.*
Response
{
    "name":" {{ the name of the network }}"
    "networkController": {
      "id": "{{ the id of the network controller }}",
      "networkGroupId": "{{ the group id of which this network belongs to }}",
      "status": "{{ current status of network controller }},"
      "hostId": "{{ the host id of the network controller }}",
      "domainName": {{ the externally resolvable dns name of this network controller" }}
      ...
    }
}
Request

This example request would return the name of the network and the id and status of the networkController but nothing else.

GET /core/v2/networks/${networkId}?embed=networkController
Accept: application/json;includeProperties=id|name|networkController.id|networkController.status
Response
{
    "id": "{{ the id of the network }}",
    "name": "{{ the name of the network }}",
    "networkController": {
      "id": "{{ the id of the network controller }}",
      "status": "{{{ current status of network controller }}"
    }
}

Backup a Network

You may combine techniques above for requesting embedded resources and the as=create representation to backup a network.

Request
GET /core/v2/network/{{networkId}}&embed=all
Accept: application/hal+json;as=create

Authentication

Authentication is delegated to an identity provider e.g. Cognito, Auth0, Okta. Use your API account credential to obtain an access token. Know more by reading the Authentication Guide.

Cognito

Follow this example if your authentication URL is for Amazon Cognito.

NETFOUNDRY_API_TOKEN=$( \ (1)
  curl --user ${NETFOUNDRY_CLIENT_ID}:${NETFOUNDRY_PASSWORD} \ (2)
    --request POST ${NETFOUNDRY_OAUTH_URL} \ (3)
    --header 'content-type: application/x-www-form-urlencoded' \
    --data 'grant_type=client_credentials&scope=https%3A%2F%2Fgateway.production.netfoundry.io%2F%2Fignore-scope' | \
      jq -r .access_token (4)
)
1 creates an environment variable NETFOUNDRY_API_TOKEN to hold the token after successful request. The contents of this variable will be used in all subsequent requests
2 substitute the client ID and password for your API account
3 substitute the authentication URL for your API account
4 extract the access token with jq (command-line JSON processor)

Auth0

Follow this example if your authentication URL is for Auth0.

NETFOUNDRY_API_TOKEN=$( \(1)
  curl \(2)
    --request POST \
    --silent \
    --show-error \
    --header 'content-type: application/json' \
    --data '{
        "client_id":"---redacted----",       (3)
        "client_secret": "---redacted----",  (4)
        "audience":"https://gateway.production.netfoundry.io/",
        "grant_type":"client_credentials"
    }' \
    https://netfoundry-production.auth0.com/oauth/token |\
    jq -r .access_token \(5)
) && echo $NETFOUNDRY_API_TOKEN (6)
1 creates an environment variable NETFOUNDRY_API_TOKEN to hold the token after successful request. The contents of this variable will be used in all subsequent requests
2 this example uses the cURL command to perform the request
3 you will need to insert your actual client ID
4 you will need to insert your actual secret
5 this example uses jq to parse the response from Auth0 and extract the token
6 this line prints the extracted token; it is included for convenience / debugging purposes only

API request using access token

Execute an http request per the example below (e.g. fetch networks). The access token is presented to the API via the Authorization header, which in turn leverages the NETFOUNDRY_API_TOKEN variable used in the previous example to store the extracted access token.

# get networks
curl https://gateway.production.netfoundry.io/core/v2/networks \ (1)
    --header "Authorization: Bearer ${NETFOUNDRY_API_TOKEN}"     (2)
1 the URL used to fetch networks (see also [Listing networks])
2 the Authorization header transmits the Bearer token

Resources

Network Groups

Create Network Group

POST /v2/network-groups

Authorization

This endpoint requires create action on the network-group resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

billingAccountId

String

true

ownerIdentityId

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVaUhocHh4Q3kzZTRvZFRSdi1EcXpBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUwNDg5MDAxLWRiNGItNGVjZS1hMzIyLTZhMzgwYzM0NjFjNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMiwiZXhwIjoxNzEyNjgyNzMyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjdiMDA5YTdlLTkyOTctNDI0NC1hZDFiLTVlNjZmMmJkNTExZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.smhbOsFSK9bUPFqNxs-U1H0GQks0g-PtKi2BLQmbqwTFdsNq8s6jK9iazyQCmtnmBEInra92OSwFi8HesKLqyo6f95VRlMk0rME-ANhlNEwSZJUZ4RMtu6WRELwSQH3hKB3QY1zvnwwZfb0hGQ36VTn-QPPVxjwoX68Dl_T6lmAA4-oYMnj3MDrGZnOAGi9BrtoSAj9ocZQuSuLzoRznZq7c8dwgLLG5ateFBQG-12ds-LSxYKnHtnbQPgsSir4wc3VEew574FmghxZonZtMhICqYjpkrKnJmHrX5SP-AvcwAuC7aoeVQVmvE8UFRLuwLr8W4AzY2zrn9SJA71ctYg' \
    -d '{"name":"New NG","billingAccountId":"eb0c2532-71e6-4f07-a485-b6ca446358be","ownerIdentityId":"f57bde72-bc06-4834-932d-92b66bb967f5"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1115

{
  "id" : "85f62066-7192-4c1b-95f5-fa8e0ada5380",
  "name" : "New NG",
  "shortName" : "NEWNG",
  "billingAccountId" : "eb0c2532-71e6-4f07-a485-b6ca446358be",
  "ownerIdentityId" : "f57bde72-bc06-4834-932d-92b66bb967f5",
  "createdBy" : "e0489001-db4b-4ece-a322-6a380c3461c7",
  "createdAt" : "2024-04-09T16:12:12.849018Z",
  "updatedAt" : "2024-04-09T16:12:12.849018Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/85f62066-7192-4c1b-95f5-fa8e0ada5380",
      "title" : "New NG"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/40842baa-1b36-48be-854c-07d9800c91bf",
      "title" : "Create NetworkGroup",
      "profile" : "meta"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=85f62066-7192-4c1b-95f5-fa8e0ada5380"
    },
    "dns-zones" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=85f62066-7192-4c1b-95f5-fa8e0ada5380"
    }
  }
}

Delete Network Group

DELETE /v2/network-groups/{id}

Authorization

This endpoint requires delete action on the network-group resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/edb27863-1f9f-4655-9a58-b0fede502aa0' -i -X DELETE \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzSW9kU3AyalBWeGNzT3MwODRseXFBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjBhMTMyMTYzLWE2OTQtNDdkMy05ZjQ5LWQ5Mjg4MDRkNjUxMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMSwiZXhwIjoxNzEyNjgyNzMxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBhZDkyOGZlLWE5YzQtNDg0Mi1iNzFiLWJhNDQxOGE2YTMxNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.UIWSCXnqzOqFrYXobb1-fKGsvxj7N43pE7CAt2KiGgj4lndNyfoOVFy-kn-tKnwWqW03pcuvcR5vcMGgkgRor7VeTpPEpB5mE0icapKVMRK3hfutb4OaFbM4rQJOfkyGrw1W-NVRuShZnuEk1Po2sv7Ko6tUHrHt5lLiQsITgbRO3yqiB2388yOb9YTiIvoiOUDAKt-MOgntU_Dw_v2Z0Glvg97N97st_A64Gd5yMV025DTkZK2TpOTR8CCn5Hvbu9ghMV-cS6AGejffqMXpu8H5mfltFsAnFdgJwSDQJ5dVzzpxLiGDJIC7QUErJcfsqunR2Ig67LF8nlKKMusz0w'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1173

{
  "id" : "edb27863-1f9f-4655-9a58-b0fede502aa0",
  "name" : "Test-NG",
  "shortName" : "nw-31",
  "billingAccountId" : "a5a48d9a-5ada-4026-9212-b8e05703a0a0",
  "ownerIdentityId" : "ebf1a51b-2771-47b2-8632-71e3be81ea72",
  "createdBy" : "dc82c2a1-e7b0-480d-a5f0-f8694fa39cde",
  "createdAt" : "2024-04-09T16:12:11.125678Z",
  "updatedAt" : "2024-04-09T16:12:11.227429Z",
  "deletedBy" : "0a132163-a694-47d3-9f49-d928804d6513",
  "deletedAt" : "2024-04-09T16:12:11.226Z",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/edb27863-1f9f-4655-9a58-b0fede502aa0",
      "title" : "Test-NG"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/38ec0016-668a-416e-a8e6-a506ac9d05bd",
      "title" : "Delete NetworkGroup",
      "profile" : "meta"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=edb27863-1f9f-4655-9a58-b0fede502aa0"
    },
    "dns-zones" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=edb27863-1f9f-4655-9a58-b0fede502aa0"
    }
  }
}

Get Network Group

GET /v2/network-groups/{id}

Authorization

This endpoint requires read action on the network-group resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/ba78fe7c-3939-4c72-87d9-232f1d999b62' -i -X GET \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIyc1o2WWw3amRjdmpxTlB1MGlhb29BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQxNDUzZDFkLWZhYzktNDNhNC04YmJmLWMxYjJjMmQ4MTVhYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMiwiZXhwIjoxNzEyNjgyNzMyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZlY2FjNjYwLTMyYzQtNDU1ZC1hMjgxLTc4ZmE0YTkzOWQxZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ly0MM1YCBPIXI-kLHk0NxennEmvOemY5i4LekSfANXOeIOrRORXE6H6_lL7w6XzEuXudQQBRxhGT86jK10FpKJBlsehnzZsSXiRYrg8uaRw5grkiuHokY6wLq-azbzw9w-w8ypVrg9bCLV-drQCUqevo08Vfsix2AWxmxTVBe9hcPS5puKzzU-cM2moTQWWDp5jHgTjixw-YpIv_hAxzpYwTjTijYkeiXba68sYQmWJ9Kh7dgBfcREIQEOdYzYVI1hbd6VrfKPeTnPxN--MyqicE6diSGZOJ5ZfUypTOX1n5ajE7yUpI83Q7fbeCsK0DQXqg8Xy1r-kAvYsq0VvCSw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 912

{
  "id" : "ba78fe7c-3939-4c72-87d9-232f1d999b62",
  "name" : "Test-NG",
  "shortName" : "nw-101",
  "billingAccountId" : "16c4535a-fd8a-4770-b356-47e6dd31f542",
  "ownerIdentityId" : "a3890ab8-51d0-4045-8a92-b9ab0e182f80",
  "createdBy" : "fd6d99e4-d1dc-4e97-8888-0014aa17f711",
  "createdAt" : "2024-04-09T16:12:12.496348Z",
  "updatedAt" : "2024-04-09T16:12:12.496348Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/ba78fe7c-3939-4c72-87d9-232f1d999b62",
      "title" : "Test-NG"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=ba78fe7c-3939-4c72-87d9-232f1d999b62"
    },
    "dns-zones" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=ba78fe7c-3939-4c72-87d9-232f1d999b62"
    }
  }
}

Find Network Groups

GET /v2/network-groups

Authorization

This endpoint requires read action on the network-group resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

name

String

true

shortName

String

true

billingAccountId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups' -i -X GET \
    -H 'Content-Type: application/x-www-form-urlencoded' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ3NmUwQ19rcFh2ZGpRTDlaeHZ2N0R3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM1ZmE0NDkyLTMxMDQtNDlhZi1iMmM0LTE4YjY0ZTliYjMxNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMSwiZXhwIjoxNzEyNjgyNzMxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjg1Y2MzYTM3LWFjNmYtNGFiOC1hZjViLWIxZTQzMzQ5MDA1N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.SpTZzg9gk3qwsD66bNPUerZ6045h2B49NrBV_w48fVyD0eaWmHjq22-4aNDlNN8Hu-G3U1rG01ijRK5eeXO7yWPx7vcPrEDV2YSKyi-e5zvRR574lzEXv5ApmPrjjmrMjXG5uuSk9t13TkjVb7jjJOPo1cSEJEbnbZSJksodXKFXj5RTo6j-foeNzJtcK8hG_0UHv0KWw0YW0yJ1tkMMy6XA0JFVsY4oBEzGR0dEG2NJCl0FYdpWSDmQVxayRKj0GQpVkadhYRxQdd5tRqLGAiWlmQhkcqZDaUnKrZ54afOoylvukDH-yPO-U-2IOl0-yef2CxgQtOOiYg0-RJjiJA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 5316

{
  "_embedded" : {
    "networkGroupList" : [ {
      "id" : "002749b2-3e11-4c2e-ad88-69fe3c802ffb",
      "name" : "Test-NG",
      "shortName" : "nw-81",
      "billingAccountId" : "6bf8fd4e-cb94-4a9c-b4df-683d646741e1",
      "ownerIdentityId" : "7d86a433-e168-4746-ade6-e89ff34d6c86",
      "createdBy" : "e6da783f-1090-4fed-b14c-24427d5993f9",
      "createdAt" : "2024-04-09T16:12:11.891147Z",
      "updatedAt" : "2024-04-09T16:12:11.891147Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/002749b2-3e11-4c2e-ad88-69fe3c802ffb",
          "title" : "Test-NG"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=002749b2-3e11-4c2e-ad88-69fe3c802ffb"
        },
        "dns-zones" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=002749b2-3e11-4c2e-ad88-69fe3c802ffb"
        }
      }
    }, {
      "id" : "7ddc6540-00b5-4604-91c3-ffedde788507",
      "name" : "Updated NG Name-4",
      "shortName" : "nw-61",
      "billingAccountId" : "59797ed9-381a-4e63-a43d-2f54779a6b12",
      "ownerIdentityId" : "9b285d42-fdf6-47ff-b0c2-99b59c593875",
      "createdBy" : "8dd3eccc-bc36-4ea9-97a4-ea9ae2c76cf1",
      "createdAt" : "2024-04-09T16:12:11.515296Z",
      "updatedAt" : "2024-04-09T16:12:11.616386Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/7ddc6540-00b5-4604-91c3-ffedde788507",
          "title" : "Updated NG Name-4"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=7ddc6540-00b5-4604-91c3-ffedde788507"
        },
        "dns-zones" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=7ddc6540-00b5-4604-91c3-ffedde788507"
        }
      }
    }, {
      "id" : "bce07cd1-8f36-44a3-b279-26426e7a53ef",
      "name" : "Cloud Engineering Networks",
      "shortName" : "CLDENG",
      "billingAccountId" : null,
      "ownerIdentityId" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
      "createdBy" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
      "createdAt" : "2024-04-09T16:11:59.941768Z",
      "updatedAt" : "2024-04-09T16:11:59.941768Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/bce07cd1-8f36-44a3-b279-26426e7a53ef",
          "title" : "Cloud Engineering Networks"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
        },
        "dns-zones" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
        }
      }
    }, {
      "id" : "e686f9b3-b4c8-452f-b85b-875d4182e447",
      "name" : "Test-NG",
      "shortName" : "nw-11",
      "billingAccountId" : "047fb286-dfd0-400b-a709-60bc23c42031",
      "ownerIdentityId" : "adc46533-7eb1-4b12-9d74-89601e065a90",
      "createdBy" : "64732fba-119d-4048-8713-43ae6ce4fb28",
      "createdAt" : "2024-04-09T16:12:09.766559Z",
      "updatedAt" : "2024-04-09T16:12:10.641116Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/e686f9b3-b4c8-452f-b85b-875d4182e447",
          "title" : "Test-NG"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=e686f9b3-b4c8-452f-b85b-875d4182e447"
        },
        "dns-zones" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=e686f9b3-b4c8-452f-b85b-875d4182e447"
        }
      }
    }, {
      "id" : "f0428619-11bd-403d-8b00-a463ff8aad84",
      "name" : "NF Support Networks",
      "shortName" : "NFSUP",
      "billingAccountId" : null,
      "ownerIdentityId" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
      "createdBy" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
      "createdAt" : "2024-04-09T16:11:59.861634Z",
      "updatedAt" : "2024-04-09T16:11:59.861634Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f0428619-11bd-403d-8b00-a463ff8aad84",
          "title" : "NF Support Networks"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
        },
        "dns-zones" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 5,
    "totalPages" : 1,
    "number" : 0
  }
}

Update Network Group

PATCH /v2/network-groups/{id}

Authorization

This endpoint requires update action on the network-group resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

billingAccountId

String

true

ownerIdentityId

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/7ddc6540-00b5-4604-91c3-ffedde788507' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1eXJXYy02V2tDMDAzcDdRWXNFUG13IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAwZDYyODk2LTIyYTUtNDFlYS04ZjkzLTMzNjAxZTM0MWZjZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMSwiZXhwIjoxNzEyNjgyNzMxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFiZTIwMDRjLTE1ZmEtNDhlOC05OTFlLTJjNTRmYmVmZTkzMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.SSArWLzd1TjoG75gbsyAVsE4cOfOk7cbqCrodSDbZx0l7-sn_E4x66mTTaO03yh7RUMnUkD_VQtl4CoySpfuBZse4Ge0-b03OTOhxsMEG-tkCCMlYTWB0msLi5X4EOeie86eg7oYMJ7F8evazj8eZe2BHjUYEzuBon5Ek8Sgg1lUB-XTCpsb3vVLZT0PTpJgLvKCYTkyejzHXeeVKaj5TvnF54-geNn_dDHj4GbilJEHBB9sMakHnX2JFSUKPQj1c9dFYIxW_3HdCu_dpXDyalKFI_k5V5kC1rQMYmExn96n9v8nXQImG5HWmUmVUaZsK0ZgFkO3p3lykdfuhM-6Tw' \
    -d '{"name":"Updated NG Name-4","billingAccountId":"59797ed9-381a-4e63-a43d-2f54779a6b12","ownerIdentityId":"9b285d42-fdf6-47ff-b0c2-99b59c593875"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1137

{
  "id" : "7ddc6540-00b5-4604-91c3-ffedde788507",
  "name" : "Updated NG Name-4",
  "shortName" : "nw-61",
  "billingAccountId" : "59797ed9-381a-4e63-a43d-2f54779a6b12",
  "ownerIdentityId" : "9b285d42-fdf6-47ff-b0c2-99b59c593875",
  "createdBy" : "8dd3eccc-bc36-4ea9-97a4-ea9ae2c76cf1",
  "createdAt" : "2024-04-09T16:12:11.515296Z",
  "updatedAt" : "2024-04-09T16:12:11.616386Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/7ddc6540-00b5-4604-91c3-ffedde788507",
      "title" : "Updated NG Name-4"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/2b1f71aa-09a3-4d6c-aceb-9283536c4780",
      "title" : "Update NetworkGroup",
      "profile" : "meta"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=7ddc6540-00b5-4604-91c3-ffedde788507"
    },
    "dns-zones" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=7ddc6540-00b5-4604-91c3-ffedde788507"
    }
  }
}

Networks

Find Networks

GET /v2/networks

Authorization

This endpoint requires read action on the network resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

network.size

Object

true

findByName

String

true

Deprecated..

findByNetworkGroupId

Object

true

Deprecated..

region

String

true

Deprecated..

locationCode

String

true

Deprecated..

size

String

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

name

String

true

networkGroupId

String

true

size

String

true

Deprecated..

productVersion

Object

true

region

String

true

Deprecated..

status

String

true

Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED].

publicCertEnabled

Boolean

true

domainNameLabel

String

true

dnsZoneId

String

true

managedJwtConnectionId

String

true

managedExternalJwtSignerId

String

true

managedAuthPolicyId

String

true

o365BreakoutCategory

String

true

Must be one of [OPTIMIZE, OPTIMIZE_ALLOW, OPTIMIZE_ALLOW_DEFAULT, NONE].

networkController

Object

true

Deprecated..

networkController.id

String

true

networkController.ownerIdentityId

String

true

networkController.networkId

String

true

networkController.domainName

String

true

networkController.alternateDomainName

String

true

networkController.name

String

true

networkController.hostId

String

true

networkController.status

String

true

Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED].

networkController.createdAt

String

true

networkController.updatedAt

String

true

networkController.deletedAt

String

true

networkController.createdBy

String

true

networkController.deletedBy

String

true

networkController.softwareDeploymentStateId

String

true

networkController.publicDomainName

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJnYzRuLTEwVDY0V0c2UjJLN1J4aUpRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdiYTdhYjA5LTI5ZDgtNDc5NS04ZDdhLTU3YjQ4ZDcyNTA5MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0MywiZXhwIjoxNzEyNjgyOTQzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRiZDUzZmEyLThhYmEtNDg0Mi04MzdhLWE0NzE2MzgxYTAzM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JXnfyokd5q13juwzHWZalTFNf2mV53qlM4dgA0d0VV7hA413tVqDjaWCh76Ga4o7mJOxpsZy0UBmCDTCGTXvhqCotEFLmQIOCeNdRI6K1tBgU2uucrJwncQ5OFU690_qQxYRa9epJeZ2EOSvUOuGynkl14PHkeVv3T6NNGlxALJQX_jqQAfB3XyMTsuLZbJkO9JQvEVi7EYk2CgnunTS7QLSbDwCDYditZ0jIynMT4wWRiGE-rMvFNu0iVZky7_x-8UM-Z2GMmPzy2yLYtCA6O_4RbEFVwq-OYmLEe22bOSqt3j_2vYorCm9W2kdqsD2_EDoJQMyR5sK-OzC95hTnA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 53758

{
  "_embedded" : {
    "networkList" : [ {
      "id" : "035b83aa-3e6b-4168-9949-859ef82caaf4",
      "ownerIdentityId" : "483e83e2-c539-48c4-b278-21cf259bce0a",
      "createdBy" : "483e83e2-c539-48c4-b278-21cf259bce0a",
      "createdAt" : "2024-04-09T16:15:43.350987Z",
      "updatedAt" : "2024-04-09T16:15:43.374150Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "resume-test",
      "networkGroupId" : "46ca0719-47f0-43a9-8f13-c2f0f4424cbf",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "28d3c0af-4403-4275-8cf9-8e25eefe629f",
        "ownerIdentityId" : "483e83e2-c539-48c4-b278-21cf259bce0a",
        "networkId" : "035b83aa-3e6b-4168-9949-859ef82caaf4",
        "domainName" : "new-domain.nf.io",
        "alternateDomainName" : null,
        "name" : "resume-test-nc",
        "hostId" : "73b38026-22af-4ceb-b7b2-0c9981c71ce1",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.351788Z",
        "updatedAt" : "2024-04-09T16:15:43.373586Z",
        "deletedAt" : null,
        "createdBy" : "483e83e2-c539-48c4-b278-21cf259bce0a",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "fcf05c02-27b3-43f5-8192-b6781d45e8ac"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/46ca0719-47f0-43a9-8f13-c2f0f4424cbf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/035b83aa-3e6b-4168-9949-859ef82caaf4",
          "title" : "resume-test"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=035b83aa-3e6b-4168-9949-859ef82caaf4"
        }
      }
    }, {
      "id" : "1f2d5831-9f8a-4bbb-86ae-84ce3271e634",
      "ownerIdentityId" : "0c120ba6-2644-4abe-a7ad-85b05899bc2e",
      "createdBy" : "0c120ba6-2644-4abe-a7ad-85b05899bc2e",
      "createdAt" : "2024-04-09T16:15:43.246498Z",
      "updatedAt" : "2024-04-09T16:15:43.246847Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2835",
      "networkGroupId" : "34a7aec6-1d30-4514-b87c-cefef7506096",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "cc0717d9-935a-4c4e-aa09-e9d8c231ad47",
        "ownerIdentityId" : "0c120ba6-2644-4abe-a7ad-85b05899bc2e",
        "networkId" : "1f2d5831-9f8a-4bbb-86ae-84ce3271e634",
        "domainName" : "cc0717d9-935a-4c4e-aa09-e9d8c231ad47.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2835-nc",
        "hostId" : "3454153c-8755-409b-9fa9-ad03720fff92",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.247452Z",
        "updatedAt" : "2024-04-09T16:15:43.248725Z",
        "deletedAt" : null,
        "createdBy" : "0c120ba6-2644-4abe-a7ad-85b05899bc2e",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "5b3f35c8-69d0-4da2-a66e-d89d86e8b422"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/34a7aec6-1d30-4514-b87c-cefef7506096",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1f2d5831-9f8a-4bbb-86ae-84ce3271e634",
          "title" : "network-2835"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=1f2d5831-9f8a-4bbb-86ae-84ce3271e634"
        }
      }
    }, {
      "id" : "30242c5f-a339-4310-8e34-ffd5b8703a4e",
      "ownerIdentityId" : "71e03828-d17f-4916-a49f-f52dd39eac59",
      "createdBy" : "71e03828-d17f-4916-a49f-f52dd39eac59",
      "createdAt" : "2024-04-09T16:15:43.066364Z",
      "updatedAt" : "2024-04-09T16:15:43.066655Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2820",
      "networkGroupId" : "d03d116a-d91c-441a-b19e-247c93c39c1d",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "ff1524da-bf7a-4cf7-ad2b-0dfa9401bbd0",
        "ownerIdentityId" : "71e03828-d17f-4916-a49f-f52dd39eac59",
        "networkId" : "30242c5f-a339-4310-8e34-ffd5b8703a4e",
        "domainName" : "ff1524da-bf7a-4cf7-ad2b-0dfa9401bbd0.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2820-nc",
        "hostId" : "cbce4470-3591-46f3-9cc6-c3ae031a7b4d",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.067189Z",
        "updatedAt" : "2024-04-09T16:15:43.068608Z",
        "deletedAt" : null,
        "createdBy" : "71e03828-d17f-4916-a49f-f52dd39eac59",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "f48bc238-2e23-4ff4-9926-e1eaffcfd89c"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d03d116a-d91c-441a-b19e-247c93c39c1d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/30242c5f-a339-4310-8e34-ffd5b8703a4e",
          "title" : "network-2820"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=30242c5f-a339-4310-8e34-ffd5b8703a4e"
        }
      }
    }, {
      "id" : "302bb32d-a545-4cbb-96aa-7d1516bb05ad",
      "ownerIdentityId" : "b4ece284-e0c1-4ec5-ab10-8b8f97152c5e",
      "createdBy" : "b4ece284-e0c1-4ec5-ab10-8b8f97152c5e",
      "createdAt" : "2024-04-09T16:15:43.278042Z",
      "updatedAt" : "2024-04-09T16:15:43.307530Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "Upload Test Network",
      "networkGroupId" : "34a7aec6-1d30-4514-b87c-cefef7506096",
      "size" : "small",
      "productVersion" : "7.3.18",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "91a2d9a8-76a7-4f59-8b90-1e93c863bd55",
        "ownerIdentityId" : "b4ece284-e0c1-4ec5-ab10-8b8f97152c5e",
        "networkId" : "302bb32d-a545-4cbb-96aa-7d1516bb05ad",
        "domainName" : "3de09b4d-a315-4f0a-91eb-1b4207e71e40.sandbox.netfoundry.io",
        "alternateDomainName" : null,
        "name" : "NCAWSi-testncinstance",
        "hostId" : "e1786cd5-9a05-4b7d-95ee-55fb50fe8022",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.282350Z",
        "updatedAt" : "2024-04-09T16:15:43.300966Z",
        "deletedAt" : null,
        "createdBy" : "b4ece284-e0c1-4ec5-ab10-8b8f97152c5e",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "4c316c27-6985-43bc-adbb-a21b80591dff"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/34a7aec6-1d30-4514-b87c-cefef7506096",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/302bb32d-a545-4cbb-96aa-7d1516bb05ad",
          "title" : "Upload Test Network"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=302bb32d-a545-4cbb-96aa-7d1516bb05ad"
        }
      }
    }, {
      "id" : "3c412903-73b1-4444-9a37-5750a15641ae",
      "ownerIdentityId" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
      "createdBy" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
      "createdAt" : "2024-04-09T16:15:43.217319Z",
      "updatedAt" : "2024-04-09T16:15:43.217598Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2830",
      "networkGroupId" : "422fcb9c-f0f5-49af-bb55-374ffced1f11",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "941c305f-34c1-48a1-8092-c4877696efc8",
        "ownerIdentityId" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
        "networkId" : "3c412903-73b1-4444-9a37-5750a15641ae",
        "domainName" : "941c305f-34c1-48a1-8092-c4877696efc8.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2830-nc",
        "hostId" : "fc754f4a-50b3-4093-a4cf-8e1af89deab8",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.218154Z",
        "updatedAt" : "2024-04-09T16:15:43.219665Z",
        "deletedAt" : null,
        "createdBy" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "4d5da1ad-d781-4451-8dae-2e6064b0356f"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/422fcb9c-f0f5-49af-bb55-374ffced1f11",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3c412903-73b1-4444-9a37-5750a15641ae",
          "title" : "network-2830"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
        }
      }
    }, {
      "id" : "50f53e78-1f77-4b47-bb39-efbdc6074a51",
      "ownerIdentityId" : "9faef009-9d0c-46f7-a2e5-5b43303301f8",
      "createdBy" : "9faef009-9d0c-46f7-a2e5-5b43303301f8",
      "createdAt" : "2024-04-09T16:15:43.346853Z",
      "updatedAt" : "2024-04-09T16:15:43.347234Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2840",
      "networkGroupId" : "b82528f6-232f-46f7-9c30-86979b18a9f1",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "e669f117-0e24-4eb2-92a8-d3aaae3531b6",
        "ownerIdentityId" : "9faef009-9d0c-46f7-a2e5-5b43303301f8",
        "networkId" : "50f53e78-1f77-4b47-bb39-efbdc6074a51",
        "domainName" : "e669f117-0e24-4eb2-92a8-d3aaae3531b6.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2840-nc",
        "hostId" : "a7bc3304-d657-4d5f-a106-5b757e3f9ab8",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.347989Z",
        "updatedAt" : "2024-04-09T16:15:43.349593Z",
        "deletedAt" : null,
        "createdBy" : "9faef009-9d0c-46f7-a2e5-5b43303301f8",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "fa4251b7-5cd8-4e1e-8f8f-f6d4333e0be9"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/b82528f6-232f-46f7-9c30-86979b18a9f1",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/50f53e78-1f77-4b47-bb39-efbdc6074a51",
          "title" : "network-2840"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=50f53e78-1f77-4b47-bb39-efbdc6074a51"
        }
      }
    }, {
      "id" : "9e8aeb28-4174-4ccb-b84e-04991722aceb",
      "ownerIdentityId" : "45642130-2268-4d31-95a9-d855287a57b8",
      "createdBy" : "45642130-2268-4d31-95a9-d855287a57b8",
      "createdAt" : "2024-04-09T16:15:43.423127Z",
      "updatedAt" : "2024-04-09T16:15:43.423674Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2855",
      "networkGroupId" : "3f084f02-96b8-40a2-bf54-c520a43637e1",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "e218d777-26cd-4d4f-8192-ff723a946f15",
        "ownerIdentityId" : "45642130-2268-4d31-95a9-d855287a57b8",
        "networkId" : "9e8aeb28-4174-4ccb-b84e-04991722aceb",
        "domainName" : "e218d777-26cd-4d4f-8192-ff723a946f15.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2855-nc",
        "hostId" : "aafec304-5b4d-43be-8493-2c8a7e0e75dd",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.424658Z",
        "updatedAt" : "2024-04-09T16:15:43.426461Z",
        "deletedAt" : null,
        "createdBy" : "45642130-2268-4d31-95a9-d855287a57b8",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "4e431d08-58e4-42a4-8c0f-b5e175fba948"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3f084f02-96b8-40a2-bf54-c520a43637e1",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/9e8aeb28-4174-4ccb-b84e-04991722aceb",
          "title" : "network-2855"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=9e8aeb28-4174-4ccb-b84e-04991722aceb"
        }
      }
    }, {
      "id" : "d4da51a0-37e6-4685-b270-74e68d330231",
      "ownerIdentityId" : "13f4dc1b-0a75-4145-b428-b051541f71d9",
      "createdBy" : "13f4dc1b-0a75-4145-b428-b051541f71d9",
      "createdAt" : "2024-04-09T16:15:43.186Z",
      "updatedAt" : "2024-04-09T16:15:43.186283Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2825",
      "networkGroupId" : "eefc5d90-a1c0-445d-9046-8201b02074a6",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "f92bc9c4-8321-430c-a8af-3c8b83cb7afd",
        "ownerIdentityId" : "13f4dc1b-0a75-4145-b428-b051541f71d9",
        "networkId" : "d4da51a0-37e6-4685-b270-74e68d330231",
        "domainName" : "f92bc9c4-8321-430c-a8af-3c8b83cb7afd.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2825-nc",
        "hostId" : "c59e35d4-e1c2-491b-b5ff-020df6549fb5",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.186846Z",
        "updatedAt" : "2024-04-09T16:15:43.188196Z",
        "deletedAt" : null,
        "createdBy" : "13f4dc1b-0a75-4145-b428-b051541f71d9",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "7053bb0f-d274-47b3-9e55-3faea89f7534"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/eefc5d90-a1c0-445d-9046-8201b02074a6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d4da51a0-37e6-4685-b270-74e68d330231",
          "title" : "network-2825"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=d4da51a0-37e6-4685-b270-74e68d330231"
        }
      }
    }, {
      "id" : "d747c747-815c-48f5-ae0d-6c40a41228e3",
      "ownerIdentityId" : "acc70087-f040-4650-a928-a1abfecec5b7",
      "createdBy" : "acc70087-f040-4650-a928-a1abfecec5b7",
      "createdAt" : "2024-04-09T16:15:42.971255Z",
      "updatedAt" : "2024-04-09T16:15:43.023992Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "suspend-test",
      "networkGroupId" : "068cc2f7-cbcb-45e3-b7ce-8d18945bad12",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "SUSPENDED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "5763c67d-70f8-4d64-adfd-f7d39db001f9",
        "ownerIdentityId" : "acc70087-f040-4650-a928-a1abfecec5b7",
        "networkId" : "d747c747-815c-48f5-ae0d-6c40a41228e3",
        "domainName" : "5763c67d-70f8-4d64-adfd-f7d39db001f9.nf.io",
        "alternateDomainName" : null,
        "name" : "suspend-test-nc",
        "hostId" : "74bda507-3d7c-4b9c-8f18-d21608be8683",
        "status" : "SUSPENDED",
        "createdAt" : "2024-04-09T16:15:42.972169Z",
        "updatedAt" : "2024-04-09T16:15:43.022894Z",
        "deletedAt" : null,
        "createdBy" : "acc70087-f040-4650-a928-a1abfecec5b7",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "251b35b8-842a-4e93-807b-69bf39614cc7"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/068cc2f7-cbcb-45e3-b7ce-8d18945bad12",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d747c747-815c-48f5-ae0d-6c40a41228e3",
          "title" : "suspend-test"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=d747c747-815c-48f5-ae0d-6c40a41228e3"
        }
      }
    }, {
      "id" : "d7d5ac23-ad44-450a-9b30-daf0a7b84393",
      "ownerIdentityId" : "2aaaf8c2-86de-43ec-a79a-e5436d7ad648",
      "createdBy" : "2aaaf8c2-86de-43ec-a79a-e5436d7ad648",
      "createdAt" : "2024-04-09T16:15:42.963180Z",
      "updatedAt" : "2024-04-09T16:15:42.963745Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "network-2805",
      "networkGroupId" : "c9371dee-b910-425a-bacb-70708dfbcb6e",
      "size" : "small",
      "productVersion" : "7.3.37",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "bca64844-9131-4dee-9450-3197a42b5544",
        "ownerIdentityId" : "2aaaf8c2-86de-43ec-a79a-e5436d7ad648",
        "networkId" : "d7d5ac23-ad44-450a-9b30-daf0a7b84393",
        "domainName" : "bca64844-9131-4dee-9450-3197a42b5544.nf.io",
        "alternateDomainName" : null,
        "name" : "network-2805-nc",
        "hostId" : "9a05a87f-bcce-42b3-87d2-2545092bc551",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:42.964447Z",
        "updatedAt" : "2024-04-09T16:15:42.967324Z",
        "deletedAt" : null,
        "createdBy" : "2aaaf8c2-86de-43ec-a79a-e5436d7ad648",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "ae0dd85c-7961-4bdf-8f1f-169fa4bc761a"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/c9371dee-b910-425a-bacb-70708dfbcb6e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d7d5ac23-ad44-450a-9b30-daf0a7b84393",
          "title" : "network-2805"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=d7d5ac23-ad44-450a-9b30-daf0a7b84393"
        }
      }
    }, {
      "id" : "f785e2d3-a7f9-403a-97c7-249028f23d04",
      "ownerIdentityId" : "fb871dde-0456-464f-9016-5adbf2773f99",
      "createdBy" : "fb871dde-0456-464f-9016-5adbf2773f99",
      "createdAt" : "2024-04-09T16:15:43.117333Z",
      "updatedAt" : "2024-04-09T16:15:43.154948Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "Test Network Yaml",
      "networkGroupId" : "d03d116a-d91c-441a-b19e-247c93c39c1d",
      "size" : "small",
      "productVersion" : "7.3.18",
      "region" : "us-east-1",
      "status" : "PROVISIONED",
      "publicCertEnabled" : false,
      "domainNameLabel" : null,
      "dnsZoneId" : null,
      "managedJwtConnectionId" : null,
      "managedExternalJwtSignerId" : null,
      "managedAuthPolicyId" : null,
      "o365BreakoutCategory" : "NONE",
      "networkController" : {
        "id" : "e769053d-6520-48e2-a7f6-6d32de7581dd",
        "ownerIdentityId" : "fb871dde-0456-464f-9016-5adbf2773f99",
        "networkId" : "f785e2d3-a7f9-403a-97c7-249028f23d04",
        "domainName" : "2412e8d6-d2bc-43ee-913d-690448b16e31.sandbox.netfoundry.io",
        "alternateDomainName" : null,
        "name" : "NCAWSi-testncinstance",
        "hostId" : "36086320-5e8e-4e88-9053-27a0ae8e2842",
        "status" : "PROVISIONED",
        "createdAt" : "2024-04-09T16:15:43.125956Z",
        "updatedAt" : "2024-04-09T16:15:43.146461Z",
        "deletedAt" : null,
        "createdBy" : "fb871dde-0456-464f-9016-5adbf2773f99",
        "deletedBy" : null,
        "softwareDeploymentStateId" : "2548e195-c21a-46c7-ae53-073f556b0cfc"
      },
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d03d116a-d91c-441a-b19e-247c93c39c1d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f785e2d3-a7f9-403a-97c7-249028f23d04",
          "title" : "Test Network Yaml"
        },
        "networks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
          "profile" : "parent"
        },
        "edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "hosts" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "service-edge-router-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "config-types" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "endpoints" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "posture-checks" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "network-controllers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "edge-routers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "services" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "process-executions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "configs" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "terminators" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "app-wans" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "certificate-authorities" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        },
        "service-policies" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=f785e2d3-a7f9-403a-97c7-249028f23d04"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 11,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Network

GET /v2/networks/{id}

Authorization

This endpoint requires read action on the network resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/networks/3c412903-73b1-4444-9a37-5750a15641ae' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJCbG40TllwYU5BbEhTUmRYWUl0Yk53IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjIxMjcyYTEzLTQ2NTctNGFmZC05ZTJlLWY0N2QyM2QwMTk1MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0MywiZXhwIjoxNzEyNjgyOTQzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM1ZjZkMWUwLTBlNTQtNDI1Ny05NTkyLTZiNDAzNWJhN2YyYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.lEzxxRAyMYThGeGCK8GCIfLY8UkRCvDkVAz-sf_-D0Qz-gbs-uKIKo5JbXFUrmLBXn7VFC3HzBEpcNrL-1k7bQP-8kSgvDSlkGZdVvqLmmEu7qNvYlx3HUiM2ak6xjd7YaMwKmwH7fbZDQPvzjSsvs6Yt2FjqfnHZQ_xAFoYv0EtZTwECXqenKdGj9GcNXnml9Ba07hfhMY55hwNgR2-YXW2TtP1FiRptX1OApi-iOukfTizIKDqzv4gb5knq-CalWxULl_GGpP1niYJKcgcUktS3VWTFo6BoJVmw2_zKrZe4CmAj8CyT1hpIZL1cqZ1lhpTIVP76In_6ZI55if4Hg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 4462

{
  "id" : "3c412903-73b1-4444-9a37-5750a15641ae",
  "ownerIdentityId" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
  "createdBy" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
  "createdAt" : "2024-04-09T16:15:43.217319Z",
  "updatedAt" : "2024-04-09T16:15:43.217598Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "name" : "network-2830",
  "networkGroupId" : "422fcb9c-f0f5-49af-bb55-374ffced1f11",
  "size" : "small",
  "productVersion" : "7.3.37",
  "region" : "us-east-1",
  "status" : "PROVISIONED",
  "publicCertEnabled" : false,
  "domainNameLabel" : null,
  "dnsZoneId" : null,
  "managedJwtConnectionId" : null,
  "managedExternalJwtSignerId" : null,
  "managedAuthPolicyId" : null,
  "o365BreakoutCategory" : "NONE",
  "networkController" : {
    "id" : "941c305f-34c1-48a1-8092-c4877696efc8",
    "ownerIdentityId" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
    "networkId" : "3c412903-73b1-4444-9a37-5750a15641ae",
    "domainName" : "941c305f-34c1-48a1-8092-c4877696efc8.nf.io",
    "alternateDomainName" : null,
    "name" : "network-2830-nc",
    "hostId" : "fc754f4a-50b3-4093-a4cf-8e1af89deab8",
    "status" : "PROVISIONED",
    "createdAt" : "2024-04-09T16:15:43.218154Z",
    "updatedAt" : "2024-04-09T16:15:43.219665Z",
    "deletedAt" : null,
    "createdBy" : "bcb99b08-e2f8-4613-8c3f-5b02f4c8285f",
    "deletedBy" : null,
    "softwareDeploymentStateId" : "4d5da1ad-d781-4451-8dae-2e6064b0356f"
  },
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/422fcb9c-f0f5-49af-bb55-374ffced1f11",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3c412903-73b1-4444-9a37-5750a15641ae",
      "title" : "network-2830"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
      "profile" : "parent"
    },
    "edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "hosts" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "service-edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "config-types" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "endpoints" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "posture-checks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "network-controllers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "edge-routers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "services" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "process-executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "terminators" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "app-wans" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "certificate-authorities" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    },
    "service-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=3c412903-73b1-4444-9a37-5750a15641ae"
    }
  }
}

Create Network

POST /v2/networks

Authorization

This endpoint requires create action on the network resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkGroupId

String

true

size

String

true

name

String

true

productVersion

Object

true

o365BreakoutCategory

String

true

Must be one of [OPTIMIZE, OPTIMIZE_ALLOW, OPTIMIZE_ALLOW_DEFAULT, NONE].

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

region

String

true

publicCertEnabled

Boolean

true

domainNameLabel

String

true

dnsZoneId

String

true

alternateDomainName

String

true

edgeRouters

Array[Object]

true

edgeRouters[].name

String

true

edgeRouters[].networkId

String

true

edgeRouters[].zitiId

String

true

edgeRouters[].provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

edgeRouters[].region

String

true

edgeRouters[].hostSize

String

true

edgeRouters[].linkListener

Boolean

true

edgeRouters[].wssListener

Boolean

true

edgeRouters[].tunnelerEnabled

Boolean

true

edgeRouters[].noTraversal

Boolean

true

edgeRouters[].enabled

Boolean

true

edgeRouters[].alternateDomainName

String

true

edgeRouters[].attributes

Array[String]

true

edgeRouters[].endpointAttributes

Array[String]

true

edgeRouterPolicies

Array[Object]

true

edgeRouterPolicies[].name

String

true

edgeRouterPolicies[].networkId

String

true

edgeRouterPolicies[].semantic

String

true

Must be one of [AllOf, AnyOf].

edgeRouterPolicies[].endpointAttributes

Array[String]

true

edgeRouterPolicies[].edgeRouterAttributes

Array[String]

true

serviceEdgeRouterPolicies

Array[Object]

true

serviceEdgeRouterPolicies[].networkId

String

true

serviceEdgeRouterPolicies[].name

String

true

serviceEdgeRouterPolicies[].semantic

String

true

Must be one of [AllOf, AnyOf].

serviceEdgeRouterPolicies[].edgeRouterAttributes

Array[String]

true

serviceEdgeRouterPolicies[].serviceAttributes

Array[String]

true

servicePolicies

Array[Object]

true

servicePolicies[].networkId

String

true

servicePolicies[].name

String

true

servicePolicies[].type

String

true

Must be one of [Dial, Bind].

servicePolicies[].semantic

String

true

Must be one of [AllOf, AnyOf].

servicePolicies[].serviceAttributes

Array[String]

true

servicePolicies[].endpointAttributes

Array[String]

true

servicePolicies[].postureCheckAttributes

Array[String]

true

services

Array[Object]

true

services[].networkId

String

true

services[].name

String

true

services[].encryptionRequired

Boolean

true

services[].configIds

Array[Object]

true

services[].configNames

Array[String]

true

services[].configs

Array[Object]

true

services[].configs[].networkId

String

true

services[].configs[].name

String

true

services[].configs[].configTypeId

String

true

services[].configs[].configTypeName

String

true

services[].configs[].configType

Object

true

services[].configs[].configType.networkId

String

true

services[].configs[].configType.name

String

true

services[].configs[].configType.schema

Object

true

services[].configs[].data

Object

true

services[].attributes

Array[String]

true

services[].modelType

String

true

Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH].

services[].model

Object

true

certificateAuthorities

Array[Object]

true

certificateAuthorities[].networkId

String

true

certificateAuthorities[].name

String

true

certificateAuthorities[].autoCaEnrollmentEnabled

Boolean

true

certificateAuthorities[].authEnabled

Boolean

true

certificateAuthorities[].ottCaEnrollmentEnabled

Boolean

true

certificateAuthorities[].certPem

String

true

certificateAuthorities[].endpointAttributes

Array[String]

true

certificateAuthorities[].identityNameFormat

String

true

endpoints

Array[Object]

true

endpoints[].networkId

String

true

endpoints[].name

String

true

endpoints[].enrollmentMethod

Object

true

endpoints[].enrollmentMethod.ott

Boolean

true

endpoints[].enrollmentMethod.updb

String

true

endpoints[].enrollmentMethod.ottca

String

true

endpoints[].externalId

String

true

endpoints[].authPolicyId

String

true

endpoints[].attributes

Array[String]

true

endpoints[].syncId

String

true

endpoints[].syncResourceId

String

true

endpoints[].shareRegistration

Object

true

endpoints[].shareRegistration.id

String

true

endpoints[].shareRegistration.toList

Array[String]

true

endpoints[].shareRegistration.ccList

Array[String]

true

endpoints[].shareRegistration.subject

String

true

endpoints[].shareRegistration.type

String

true

Must be one of [Email].

appWans

Array[Object]

true

appWans[].networkId

String

true

appWans[].name

String

true

appWans[].serviceAttributes

Array[String]

true

appWans[].endpointAttributes

Array[String]

true

appWans[].postureCheckAttributes

Array[String]

true

postureChecks

Array[Object]

true

postureChecks[].name

String

true

postureChecks[].networkId

String

true

postureChecks[].type

String

true

Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI].

postureChecks[].attributes

Array[String]

true

postureChecks[].data

Object

true

postureChecks[].data.domains

Array[String]

true

postureChecks[].data.macAddresses

Array[String]

true

postureChecks[].data.timeoutSeconds

Integer

true

postureChecks[].data.promptOnWake

Boolean

true

postureChecks[].data.promptOnUnlock

Boolean

true

postureChecks[].data.ignoreLegacyEndpoints

Boolean

true

postureChecks[].data.operatingSystems

Array[Object]

true

postureChecks[].data.operatingSystems[].type

String

true

Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer].

postureChecks[].data.operatingSystems[].versions

Array[String]

true

postureChecks[].data.process

Object

true

postureChecks[].data.process.osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

postureChecks[].data.process.path

String

true

postureChecks[].data.process.hashes

Array[String]

true

postureChecks[].data.process.signerFingerprint

String

true

postureChecks[].data.processes

Array[Object]

true

postureChecks[].data.processes[].osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

postureChecks[].data.processes[].path

String

true

postureChecks[].data.processes[].hashes

Array[String]

true

postureChecks[].data.processes[].signerFingerprints

Array[String]

true

postureChecks[].data.semantic

String

true

Must be one of [AllOf, AnyOf].

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5SHlFSEgyMVZqLTBQSVdCaFdkLWtBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdmM2ZjNWFkLTdkNjUtNDQzYS1hYWUyLTUxZWU5Y2ZmMzRjOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0MywiZXhwIjoxNzEyNjgyOTQzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNkZjIzZmMzLTdjM2ItNGUxMS1iMDBjLTY1ODIwOGQ5ZWZkN1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ImigO7yTBe0KPRAf0AcP26cBuvST7Wvec-UzrOXZc_uqGaCq272FYmUozv2X9y0HA_xWleSKpPcbOKBxFWUsnBce5i6Ty_vNohOe7uZPu6mNVJvvhYnkmCjC_WhTYnImVP7ncSJYpwfpiKsQMoPCZ1l19AczvmGAkee66xucqTCISC2EQ0ZHAR9RNBNaJVgSm-uV82wu9NIYcrHFAskXigUiXe7dTufC6gNzvVy-RDplT0CaldfknrifadczjnDTLJxpm6qwlPxWCmN_TIQux0XQPg2IVlDJsP63nPIh45Tu2vKI_SCj1VafGuu19Zu4VJbNFkGCQ-4aT7RVcmGLvg' \
    -d '{"networkGroupId":"5120e22b-e851-499f-9b79-2aca5a71c48a","size":"small","name":"Create Test Network","o365BreakoutCategory":"NONE","provider":"AWS","region":"us-east-1","publicCertEnabled":false,"edgeRouters":[],"edgeRouterPolicies":[],"serviceEdgeRouterPolicies":[],"servicePolicies":[],"services":[],"certificateAuthorities":[],"endpoints":[],"appWans":[],"postureChecks":[]}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3780

{
  "id" : "4b8cb005-f33b-4692-a716-387f29476cff",
  "ownerIdentityId" : "7f3fc5ad-7d65-443a-aae2-51ee9cff34c8",
  "createdBy" : "7f3fc5ad-7d65-443a-aae2-51ee9cff34c8",
  "createdAt" : "2024-04-09T16:15:43.597582Z",
  "updatedAt" : "2024-04-09T16:15:43.597582Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "name" : "Create Test Network",
  "networkGroupId" : "5120e22b-e851-499f-9b79-2aca5a71c48a",
  "size" : "small",
  "productVersion" : "7.3.18",
  "region" : "us-east-1",
  "status" : "PROVISIONING",
  "publicCertEnabled" : false,
  "domainNameLabel" : null,
  "dnsZoneId" : null,
  "managedJwtConnectionId" : null,
  "managedExternalJwtSignerId" : null,
  "managedAuthPolicyId" : null,
  "o365BreakoutCategory" : "NONE",
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5120e22b-e851-499f-9b79-2aca5a71c48a",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4b8cb005-f33b-4692-a716-387f29476cff",
      "title" : "Create Test Network"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
      "profile" : "parent"
    },
    "edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "hosts" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "service-edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "config-types" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "endpoints" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "posture-checks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "network-controllers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "edge-routers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "services" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "process-executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "terminators" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "app-wans" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "certificate-authorities" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    },
    "service-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=4b8cb005-f33b-4692-a716-387f29476cff"
    }
  }
}

Delete Network

DELETE /v2/networks/{id}

Authorization

This endpoint requires delete action on the network resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/networks/aabc9bea-c6c7-4d70-89fc-270b1e8c8457' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJKbGNJUW8xMHBMWXhUVzBoWGdwRDlnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM4MGZjMzJlLTI5ODQtNDJmNy1hMjRhLWU1ZmQ2ODY0OTEwNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0MywiZXhwIjoxNzEyNjgyOTQzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImEzM2RhNjFkLWIzM2MtNDAxNS04MjMzLWJiNjBmYWQ3YzA1ZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.nLjlQbQUB6O_edZeNR9q99lPVfDBiLJ_c9NaaZ4dqYzLRLGMVG4o_u21x1rDqhZ9_pK-lri1lHPCdVuiNbyDVal1i4LEEH7606v-BTvsaD14PApffNs0cuggtfi7O4MMqymubGuZ0P2AoukQA4VbkWJ59_u1UiKeHuVyoBmg4-7qwgxX6_ghyvWzYNllUSj79TbRTdV5WOOmtqteFk9rztfmofqXbdxjqdEV9eDlBfTB-w4GtLil9DS4RRazxWKt5XnSkEH_KqWfJIfHG4q7pOVaY9BTk9QfkGKwDm8Yn7lhc8xsnhIs_t31mKrRV1Cg0dfP6U_oO1nXfYIAbhGjrw'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3796

{
  "id" : "aabc9bea-c6c7-4d70-89fc-270b1e8c8457",
  "ownerIdentityId" : "474b09ae-adee-4541-b422-f1361a2b4fe7",
  "createdBy" : "474b09ae-adee-4541-b422-f1361a2b4fe7",
  "createdAt" : "2024-04-09T16:15:43.892096Z",
  "updatedAt" : "2024-04-09T16:15:43.905852Z",
  "deletedBy" : "380fc32e-2984-42f7-a24a-e5fd68649104",
  "deletedAt" : null,
  "name" : "network-2890",
  "networkGroupId" : "994e0062-4b0b-43b1-963a-a20336cfb3ce",
  "size" : "small",
  "productVersion" : "7.3.37",
  "region" : "us-east-1",
  "status" : "DELETING",
  "publicCertEnabled" : false,
  "domainNameLabel" : null,
  "dnsZoneId" : null,
  "managedJwtConnectionId" : null,
  "managedExternalJwtSignerId" : null,
  "managedAuthPolicyId" : null,
  "o365BreakoutCategory" : "NONE",
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/994e0062-4b0b-43b1-963a-a20336cfb3ce",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/aabc9bea-c6c7-4d70-89fc-270b1e8c8457",
      "title" : "network-2890"
    },
    "networks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks",
      "profile" : "parent"
    },
    "edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "hosts" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "service-edge-router-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "config-types" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "endpoints" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "posture-checks" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "network-controllers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "edge-routers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "services" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "process-executions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "terminators" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "app-wans" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "certificate-authorities" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    },
    "service-policies" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=aabc9bea-c6c7-4d70-89fc-270b1e8c8457"
    }
  }
}

Network Controllers

Get Network Controller

GET /v2/network-controllers/{id}

Authorization

This endpoint requires read action on the network-controller resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers/8951e023-d8c7-43fe-91e6-c9ace00377d1' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkSC03N3dlX0QzaXhVTEV3dEtBWU53IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA2OGZhZTc3LWQ1YzUtNDFjZC05MDUzLTdkODZmMmEwYTU0ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE5NCwiZXhwIjoxNzEyNjgyNzk0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRkNWUwZjNhLWIwZTgtNDg4Yy04NzY5LWFjZGRiN2Q4ZjIyZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.DXtAD_7wLvlVDKa5s6s3FkZc3fFyVuBYvboT8w8xQeSvDu_r29klmZWEpnT36Jr1kmdF0Oqqwx1IABJ5yCdz-0HIUVWlpp8wU3KZo1DtI_mx0Cas8kuo-08DuHBlZ2e98na72oLrHZTcZ6wjgseaHUdOSfPQKZ1EQwobc9gvdkqbawU1bMmMSNAdymCDv5dgl90E7qW1Y6x091e3RZBg-xDa-Tqzo3sGT5RrUhT46zQ8xlpPWnQ6Ihp-SXvZZZASJSRlyzHtvuGTGYPf-K-W_eNR2un_hA1DMdR3iXAJns5WQAz50bofFYylAlrReJn1PuSnY0-xVtnuhOhOr3je5w'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1564

{
  "id" : "8951e023-d8c7-43fe-91e6-c9ace00377d1",
  "ownerIdentityId" : "c49ffb27-bdd6-4613-9607-86c2f96b3075",
  "networkId" : "4aa9cd98-fb9e-4460-9ba1-c74a19fd50c9",
  "domainName" : "new-domain.nf.io",
  "alternateDomainName" : null,
  "name" : "networkcontroller-controller-test-nc",
  "hostId" : "49fdafb3-a9aa-481f-9f0d-827fb3d5c404",
  "status" : "PROVISIONED",
  "createdAt" : "2024-04-09T16:13:10.004576Z",
  "updatedAt" : "2024-04-09T16:13:14.631527Z",
  "deletedAt" : null,
  "createdBy" : "c49ffb27-bdd6-4613-9607-86c2f96b3075",
  "deletedBy" : null,
  "softwareDeploymentStateId" : "58d45d97-395a-4d35-9b0e-8164fd011b99",
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4aa9cd98-fb9e-4460-9ba1-c74a19fd50c9",
      "profile" : "parent"
    },
    "host" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/49fdafb3-a9aa-481f-9f0d-827fb3d5c404"
    },
    "software-deployment-state" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/58d45d97-395a-4d35-9b0e-8164fd011b99"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/8951e023-d8c7-43fe-91e6-c9ace00377d1",
      "title" : "networkcontroller-controller-test-nc"
    },
    "softwareDeploymentState" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/58d45d97-395a-4d35-9b0e-8164fd011b99",
      "deprecation" : "Use software-deployment-state link instead"
    }
  }
}

Get Network Controller Session

GET /v2/network-controllers/{id}/session

Authorization

This endpoint requires read-platform-protected action on the network-controller resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers/8951e023-d8c7-43fe-91e6-c9ace00377d1/session' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1R19fNkUtcEh2cFFTdkpUZ1dyVEFRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImQ5ZWNiNjZkLTRkNWEtNGExYS1iOTQzLWVjNjg4N2ViMWRlYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE5MSwiZXhwIjoxNzEyNjgyNzkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNkODg5M2E5LWVkMzgtNGUzMS1iMDAwLTVhMDQzNzA4YTBlOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.fzFVItwGEsgTyc6qyXy3cH55FtAQYwFVYlH-xEc47HZhwjFHWYrX-O3rvl6uBnJrQBxGQ_UlegkHNaQmATwhFBn5jKKto4GWP3qBpQ0IADwJktiLN0hh87HJMgGlCPHuLRYA6bqVzV-xHMCPdG0yALjpWCbQNOQsonYQQk8Av6-d2qQr6w6DHvqe4p2TZ-x3Ul5qXedJApqbSILewouaKkym2a3iipazg5wAPxiXxVsWJYho2RxZKKkG6X3H4hFmcNCgTeECqCIpAmE2J2XM8HkG2IUJhb7KwTVrOyV92d3k3dLKlH0OFejq9f_NUa8WEQJ96A3BPW8O53nblBf7SQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 408

{
  "sessionToken" : "--- session ---",
  "expiresAt" : "2024-04-09T16:13:11.605+00:00",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/8951e023-d8c7-43fe-91e6-c9ace00377d1/session"
    },
    "parent" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/8951e023-d8c7-43fe-91e6-c9ace00377d1"
    }
  }
}

Find Network Controllers

GET /v2/network-controllers

Authorization

This endpoint requires read action on the network-controller resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

isDeleted

Boolean

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

networkId

String

true

domainName

String

true

alternateDomainName

String

true

name

String

true

hostId

String

true

status

String

true

Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED].

createdAt

String

true

updatedAt

String

true

deletedAt

String

true

createdBy

String

true

deletedBy

String

true

softwareDeploymentStateId

String

true

publicDomainName

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2024-04-09T15:14:23.928396151Z' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJETnVXZ1lTU0JwMS16MURfS3dTemlnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjMwMTc1ZWM5LTQyZGEtNDM1NC04N2FjLTZjYmI5M2YzNTgwMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI2MywiZXhwIjoxNzEyNjgyODYzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImYzNmYzMmQxLTE3MGEtNGJlMC1hNjUxLTIwNzE0NGFhYmMyMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI2M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.FhjNU0FU4VYO5BrZhwIImvVTLkc-jLMi7Mnsx2iQhEbMyTxqQhzXiiVJYxeizW65PVtSHbLDY1AJyYBU0-X_1SRJDse8LJbPfVgDbt-uAQX3jXXI8x1X5P-XblRRSps5kF96u4mHH9SfwN09upe_TlrxLKKiYR0PEkLcuMx8YxiOBEWsaDssLQr2A5ovwXUv2f0a1DqLhLDh_wWqoc6HoYMdKILhMRkk1uJHGAGAGhYD4uECinUU9ai6kLt9FUcZUnfvzDwVOaVJbMtA0F5RpDKkKzq5-aWX-WlcrbKmgm1Blp6UJI5M6pkfNXmQQWPciqxQ1M5Ch2Uqpz-m-HtQow'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2818

{
  "_embedded" : {
    "networkControllerList" : [ {
      "id" : "a84a1e3b-cb47-4e68-a731-dfbb7c72db86",
      "ownerIdentityId" : "702faab8-7f04-43fe-8ac8-666fd0457804",
      "networkId" : "964d3417-3597-4349-b6be-f9c3f6fbf699",
      "domainName" : "g1Unxat6nHHyqI89UK1v9.fake.com",
      "alternateDomainName" : null,
      "name" : "NetworkController Find Test 2 - NC",
      "hostId" : "350d79ee-cde4-405a-931f-f0cfff98d72c",
      "status" : "PROVISIONING",
      "createdAt" : "2024-04-09T16:14:23.894881Z",
      "updatedAt" : "2024-04-09T16:14:23.894881Z",
      "deletedAt" : null,
      "createdBy" : "702faab8-7f04-43fe-8ac8-666fd0457804",
      "deletedBy" : null,
      "softwareDeploymentStateId" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/964d3417-3597-4349-b6be-f9c3f6fbf699",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/a84a1e3b-cb47-4e68-a731-dfbb7c72db86",
          "title" : "NetworkController Find Test 2 - NC"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/350d79ee-cde4-405a-931f-f0cfff98d72c"
        }
      }
    }, {
      "id" : "c8d92011-4cf7-43c3-8626-edaf7a037e69",
      "ownerIdentityId" : "702faab8-7f04-43fe-8ac8-666fd0457804",
      "networkId" : "db3d7160-16fa-44ee-a77c-bae19e628897",
      "domainName" : "uEleeUh8-bYiJzNjjGR3i.fake.com",
      "alternateDomainName" : null,
      "name" : "NetworkController Find Test 1 - NC",
      "hostId" : "a0d0d4c4-e3f1-45d3-8ecb-5d06dbc1bb34",
      "status" : "PROVISIONED",
      "createdAt" : "2024-04-09T16:14:23.886706Z",
      "updatedAt" : "2024-04-09T16:14:23.886706Z",
      "deletedAt" : null,
      "createdBy" : "702faab8-7f04-43fe-8ac8-666fd0457804",
      "deletedBy" : null,
      "softwareDeploymentStateId" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/db3d7160-16fa-44ee-a77c-bae19e628897",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/c8d92011-4cf7-43c3-8626-edaf7a037e69",
          "title" : "NetworkController Find Test 1 - NC"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a0d0d4c4-e3f1-45d3-8ecb-5d06dbc1bb34"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2024-04-09T15:14:23.928396151Z"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Endpoints

Find Endpoints

GET /v2/endpoints

Authorization

This endpoint requires read action on the endpoint resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

attributes

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

networkId

String

true

zitiId

String

true

name

String

true

typeId

String

true

appId

String

true

appVersion

String

true

branch

String

true

revision

String

true

type

String

true

version

String

true

arch

String

true

os

String

true

osRelease

String

true

osVersion

String

true

externalId

String

true

authPolicyId

String

true

disabled

Boolean

true

disabledAt

String

true

disabledUntil

String

true

hasApiSession

Boolean

true

hasEdgeRouterConnection

Boolean

true

lastOnlineAt

String

true

syncId

String

true

syncResourceId

String

true

attributes

Array[String]

true

interceptConflicts

Array[Object]

true

interceptConflicts[].fromServicePolicyId

String

true

interceptConflicts[].fromServicePolicyName

String

true

interceptConflicts[].toServicePolicyId

String

true

interceptConflicts[].toServicePolicyName

String

true

interceptConflicts[].conflictingServiceInfo

Array[Object]

true

interceptConflicts[].conflictingServiceInfo[].fromServiceId

String

true

interceptConflicts[].conflictingServiceInfo[].fromServiceName

String

true

interceptConflicts[].conflictingServiceInfo[].toServiceId

String

true

interceptConflicts[].conflictingServiceInfo[].toServiceName

String

true

loopbackConflicts

Array[Object]

true

loopbackConflicts[].fromServicePolicyId

String

true

loopbackConflicts[].fromServicePolicyName

String

true

loopbackConflicts[].toServicePolicyId

String

true

loopbackConflicts[].toServicePolicyName

String

true

loopbackConflicts[].conflictingServiceInfo

Array[Object]

true

loopbackConflicts[].conflictingServiceInfo[].fromServiceId

String

true

loopbackConflicts[].conflictingServiceInfo[].fromServiceName

String

true

loopbackConflicts[].conflictingServiceInfo[].toServiceId

String

true

loopbackConflicts[].conflictingServiceInfo[].toServiceName

String

true

jwt

String

true

online

Boolean

true

mfaEnabled

Boolean

true

managedBy

String

true

jwtExpiresAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJlMXA5NFZvZWdzeEtCOU9YeEFfUXNRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjU2ZGQ2MDRmLWZiYmEtNGRjNC1hMWNhLWI1NjYzM2NjOWU3MSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI4NywiZXhwIjoxNzEyNjgyODg3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImI5MzJiNGNmLTY0ZGYtNDVmNi1iMTlmLTBhMTkwNDFiODhjZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI4N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.CSpX5jkN2rlBcPUX39rX7ZProBLMHvJHwruMNyxZ2Lw-EB7bVi97vExRaF0YAILuBHRMX8ky9cvHyotKRpjt-8n29hPdfEgqinXYZopBFl5gAu2yrPC0G8vFVhYqsq4G3msQp2TZlJsD3gVlZPvp9jAkmH1kzGFxH5zm2DhI3zVQlaKTlil7Cxd7Ocn-Uztobv55ImvcTp8CDVLwUDZ3WzI_A-0a_l9DY2EGpGD5FDSyzN5Lu6FJcZJgw_XRzWX7x-PiSnkuDt2I6X31UrdlJMGgEUaLwZFEnyr0bCU345TVt6hqGGsupmRABMMs2nk_J-8GXfND2SoD2HDv6ZeSGA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 6504

{
  "_embedded" : {
    "endpointList" : [ {
      "id" : "7aac3cf0-4549-436b-958d-4675552ebd2a",
      "ownerIdentityId" : "57043339-6fd9-4cce-9edf-32e2e4bce5ea",
      "createdBy" : "57043339-6fd9-4cce-9edf-32e2e4bce5ea",
      "createdAt" : "2024-04-09T16:14:47.920522Z",
      "updatedAt" : "2024-04-09T16:14:47.920522Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "3ed06c26-c572-4fb5-b9bd-cce75ac01ec7",
      "zitiId" : "ziti-id-1167",
      "name" : "endpoint-1166",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : null,
      "syncResourceId" : null,
      "attributes" : [ ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Unmanaged",
      "jwtExpiresAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3ed06c26-c572-4fb5-b9bd-cce75ac01ec7",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/7aac3cf0-4549-436b-958d-4675552ebd2a",
          "title" : "endpoint-1166"
        }
      }
    }, {
      "id" : "91283569-6291-4a1d-9b9f-e50ce40d8c1d",
      "ownerIdentityId" : "ae2f3c0b-aa9d-40e0-b421-5e5e843beb55",
      "createdBy" : "ae2f3c0b-aa9d-40e0-b421-5e5e843beb55",
      "createdAt" : "2024-04-09T16:14:47.923887Z",
      "updatedAt" : "2024-04-09T16:14:47.923887Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "3ed06c26-c572-4fb5-b9bd-cce75ac01ec7",
      "zitiId" : "ziti-id-1174",
      "name" : "nnzoIlO8agiidgeuwVxNn",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : null,
      "syncResourceId" : null,
      "attributes" : [ ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Unmanaged",
      "jwtExpiresAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3ed06c26-c572-4fb5-b9bd-cce75ac01ec7",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/91283569-6291-4a1d-9b9f-e50ce40d8c1d",
          "title" : "nnzoIlO8agiidgeuwVxNn"
        }
      }
    }, {
      "id" : "d2da17a5-3013-4873-81d7-7332eb9fa1f4",
      "ownerIdentityId" : "3a1a282c-f36a-4116-9b48-9623bfeed225",
      "createdBy" : "3a1a282c-f36a-4116-9b48-9623bfeed225",
      "createdAt" : "2024-04-09T16:14:47.863876Z",
      "updatedAt" : "2024-04-09T16:14:47.863876Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "93c005b0-b1f7-46a6-be51-1eda20bdbe7a",
      "zitiId" : "ziti-id-1140",
      "name" : "endpoint-1139",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : null,
      "syncResourceId" : null,
      "attributes" : [ ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Unmanaged",
      "jwtExpiresAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/93c005b0-b1f7-46a6-be51-1eda20bdbe7a",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/d2da17a5-3013-4873-81d7-7332eb9fa1f4",
          "title" : "endpoint-1139"
        }
      }
    }, {
      "id" : "fdf62880-2934-48ac-b676-c09e150bff3a",
      "ownerIdentityId" : "7e06f5fe-7e83-4399-9e7e-2ddf436f4a91",
      "createdBy" : "7e06f5fe-7e83-4399-9e7e-2ddf436f4a91",
      "createdAt" : "2024-04-09T16:14:47.875792Z",
      "updatedAt" : "2024-04-09T16:14:47.875792Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "634048dc-9534-4f75-8c3c-ba16bb95269f",
      "zitiId" : "315c886a-2ddc-4c5c-8ec4-29708da51c07",
      "name" : "Refresh Success Endpoint",
      "typeId" : "Default",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : null,
      "syncResourceId" : null,
      "attributes" : [ ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Unmanaged",
      "jwtExpiresAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/634048dc-9534-4f75-8c3c-ba16bb95269f",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/fdf62880-2934-48ac-b676-c09e150bff3a",
          "title" : "Refresh Success Endpoint"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 4,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Endpoint

GET /v2/endpoints/{id}

Authorization

This endpoint requires read action on the endpoint resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/42a1dee3-468e-495b-b7c9-113d4395c3fb' -i -X GET \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJRVzB3VmE4UXF4YzhzYXBFVTVsODB3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJkNmM3MDBkLWZlMmMtNDk3Ni04ZGRlLTFjZGM1M2ZhY2U0YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI4OCwiZXhwIjoxNzEyNjgyODg4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNhNTU2MmE1LTkxYjQtNDVmNS04NzE1LWFjNjg3NDc4NGRkZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI4OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.iosfxTg5uV3zZ-oi48f8m2WSBY3Ecb6V_DU8z0NP89_jzrJnvb3V3DMtxfQPVnw58jaLkUl3sQvMCNM2qcX1xWUvldVTm94zdTCAzInKm4XK1QVMvAzEMIKkjBBFCEGmHFf37rbPQq0Mr0W3FHC1Is63nEpnnSwaXZV1_w-GjinHHlxElVC8LduhQiVPID1zFbvL9hXhyrtQX1ARyx9N9BfGH9u5AnEyuZpT9eQI7GMoLUAjx5rPRQogA7I3bXrMprciHPTYj_1JJ2BjYsUJX9q32RCsakJXCkbYfVnRooqbftVt6pTbNA9bPXEmj5lfUcZHZYSFJUTh4ylStpPtoQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1361

{
  "id" : "42a1dee3-468e-495b-b7c9-113d4395c3fb",
  "ownerIdentityId" : "c893e242-0f42-4f55-83f1-0a19c542c1cc",
  "createdBy" : "c893e242-0f42-4f55-83f1-0a19c542c1cc",
  "createdAt" : "2024-04-09T16:14:48.713899Z",
  "updatedAt" : "2024-04-09T16:14:48.713899Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "55bc01bc-fdfd-4f4b-936c-e9fd136a76c1",
  "zitiId" : "ziti-id-1341",
  "name" : "endpoint-1340",
  "typeId" : "type",
  "appId" : "appId",
  "appVersion" : "appVersion",
  "branch" : "branch",
  "revision" : "revision",
  "type" : "User",
  "version" : "version",
  "arch" : "arch",
  "os" : "os",
  "osRelease" : "osRelease",
  "osVersion" : "osVersion",
  "hasApiSession" : false,
  "hasEdgeRouterConnection" : false,
  "lastOnlineAt" : null,
  "syncId" : null,
  "syncResourceId" : null,
  "attributes" : [ ],
  "interceptConflicts" : [ ],
  "loopbackConflicts" : [ ],
  "jwt" : null,
  "online" : false,
  "mfaEnabled" : false,
  "managedBy" : "Unmanaged",
  "jwtExpiresAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/55bc01bc-fdfd-4f4b-936c-e9fd136a76c1",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/42a1dee3-468e-495b-b7c9-113d4395c3fb",
      "title" : "endpoint-1340"
    }
  }
}

Find Endpoints

GET /v2/endpoints

Authorization

This endpoint requires read action on the endpoint resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

attributes

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

networkId

String

true

zitiId

String

true

name

String

true

typeId

String

true

appId

String

true

appVersion

String

true

branch

String

true

revision

String

true

type

String

true

version

String

true

arch

String

true

os

String

true

osRelease

String

true

osVersion

String

true

externalId

String

true

authPolicyId

String

true

disabled

Boolean

true

disabledAt

String

true

disabledUntil

String

true

hasApiSession

Boolean

true

hasEdgeRouterConnection

Boolean

true

lastOnlineAt

String

true

syncId

String

true

syncResourceId

String

true

attributes

Array[String]

true

interceptConflicts

Array[Object]

true

interceptConflicts[].fromServicePolicyId

String

true

interceptConflicts[].fromServicePolicyName

String

true

interceptConflicts[].toServicePolicyId

String

true

interceptConflicts[].toServicePolicyName

String

true

interceptConflicts[].conflictingServiceInfo

Array[Object]

true

interceptConflicts[].conflictingServiceInfo[].fromServiceId

String

true

interceptConflicts[].conflictingServiceInfo[].fromServiceName

String

true

interceptConflicts[].conflictingServiceInfo[].toServiceId

String

true

interceptConflicts[].conflictingServiceInfo[].toServiceName

String

true

loopbackConflicts

Array[Object]

true

loopbackConflicts[].fromServicePolicyId

String

true

loopbackConflicts[].fromServicePolicyName

String

true

loopbackConflicts[].toServicePolicyId

String

true

loopbackConflicts[].toServicePolicyName

String

true

loopbackConflicts[].conflictingServiceInfo

Array[Object]

true

loopbackConflicts[].conflictingServiceInfo[].fromServiceId

String

true

loopbackConflicts[].conflictingServiceInfo[].fromServiceName

String

true

loopbackConflicts[].conflictingServiceInfo[].toServiceId

String

true

loopbackConflicts[].conflictingServiceInfo[].toServiceName

String

true

jwt

String

true

online

Boolean

true

mfaEnabled

Boolean

true

managedBy

String

true

jwtExpiresAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1M1l3Qk81T1YySEFmcWlsTHBqSFZ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjVkYzk5YjZkLTllNzUtNDg4Mi04YTFlLTIzODE0ZTgxNWY5YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1OCwiZXhwIjoxNzEyNjgyODU4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA2YmE4MGI3LWY1ZTUtNGZkYS1hN2ZkLTQ3NzFjZmE2YjUzMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.cO0pxXnhTKXwfurgllVzKQxZhY3qZ2uQP-sVJluEAADsq7LcS_PX53tgL6RXmBI8Ic9_g_LVpRjrQhDILIBFMwbNHcBd1h-V58PGWW2HBlqBwsJWFdUI3pva04XLGaNhO90U-ELrqaB-5evulB-SvBqEG1bKAFll-D7rQGU_ruvzZCgczhZ2KDmcqW7XJFNbw-yr7n-ixJbEqQHH5EYiTXUWAisHpV0FjJR1x5SBymgZf7f-wZvblSkQQiwaA1rCUVO5JTLIXiSpLg92nB6TvL6hT7JMxS0FIyv4Z_T0-NaiDhO-ffcqyfovuYaaMoL8w1XUbwLuP6U1eUVAq3KWaA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 5197

{
  "_embedded" : {
    "endpointList" : [ {
      "id" : "a1a968d8-ed06-4b90-a0c2-fc76b200f66b",
      "ownerIdentityId" : "19b4dc81-56b8-45e9-a0f9-30b5e004d0ff",
      "createdBy" : "19b4dc81-56b8-45e9-a0f9-30b5e004d0ff",
      "createdAt" : "2024-04-09T16:14:18.265520Z",
      "updatedAt" : "2024-04-09T16:14:18.265520Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "a89e8df4-4045-45bf-a307-e695f0794830",
      "zitiId" : "ziti-id-255",
      "name" : "Test Endpoint 3",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : null,
      "syncResourceId" : null,
      "attributes" : [ ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Unmanaged",
      "jwtExpiresAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/a1a968d8-ed06-4b90-a0c2-fc76b200f66b",
          "title" : "Test Endpoint 3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a89e8df4-4045-45bf-a307-e695f0794830",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "e0c61398-1cbd-4f5c-a392-3ba2579690a4",
      "ownerIdentityId" : "6524537f-540b-4ce2-b080-bc8dd8a38706",
      "createdBy" : "6524537f-540b-4ce2-b080-bc8dd8a38706",
      "createdAt" : "2024-04-09T16:14:18.257252Z",
      "updatedAt" : "2024-04-09T16:14:18.257252Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "a89e8df4-4045-45bf-a307-e695f0794830",
      "zitiId" : "ziti-id-251",
      "name" : "Test Endpoint 1",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : "18ffb5cc-bc92-4d19-9c53-d091b9286205",
      "syncResourceId" : "z_A835sOhOC01qcXmyo_X",
      "attributes" : [ "#attr2", "#attr1" ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Sync",
      "jwtExpiresAt" : null,
      "_links" : {
        "auth-policy" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/auth-policies/a4d9d0db-5420-4f93-bc51-fff4113d9338"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/e0c61398-1cbd-4f5c-a392-3ba2579690a4",
          "title" : "Test Endpoint 1"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a89e8df4-4045-45bf-a307-e695f0794830",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "e3dc7698-d2f2-4342-b0b9-4e4dae1ebe3f",
      "ownerIdentityId" : "6524537f-540b-4ce2-b080-bc8dd8a38706",
      "createdBy" : "6524537f-540b-4ce2-b080-bc8dd8a38706",
      "createdAt" : "2024-04-09T16:14:18.261470Z",
      "updatedAt" : "2024-04-09T16:14:18.261470Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "a89e8df4-4045-45bf-a307-e695f0794830",
      "zitiId" : "ziti-id-253",
      "name" : "Test Endpoint 2",
      "typeId" : "type",
      "appId" : "appId",
      "appVersion" : "appVersion",
      "branch" : "branch",
      "revision" : "revision",
      "type" : "User",
      "version" : "version",
      "arch" : "arch",
      "os" : "os",
      "osRelease" : "osRelease",
      "osVersion" : "osVersion",
      "hasApiSession" : false,
      "hasEdgeRouterConnection" : false,
      "lastOnlineAt" : null,
      "syncId" : "b6d872af-796a-49d1-aaf8-d4dd56909e53",
      "syncResourceId" : "mQZfCQRDt-qPOUHh99bMy",
      "attributes" : [ "#attr3", "#attr1" ],
      "interceptConflicts" : [ ],
      "loopbackConflicts" : [ ],
      "jwt" : null,
      "online" : false,
      "mfaEnabled" : false,
      "managedBy" : "Sync",
      "jwtExpiresAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/e3dc7698-d2f2-4342-b0b9-4e4dae1ebe3f",
          "title" : "Test Endpoint 2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a89e8df4-4045-45bf-a307-e695f0794830",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 3,
    "totalPages" : 1,
    "number" : 0
  }
}

Create Endpoint

POST /v2/endpoints

Authorization

This endpoint requires create action on the endpoint resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

enrollmentMethod

Object

true

enrollmentMethod.ott

Boolean

true

enrollmentMethod.updb

String

true

enrollmentMethod.ottca

String

true

externalId

String

true

authPolicyId

String

true

attributes

Array[String]

true

syncId

String

true

syncResourceId

String

true

shareRegistration

Object

true

shareRegistration.id

String

true

shareRegistration.toList

Array[String]

true

shareRegistration.ccList

Array[String]

true

shareRegistration.subject

String

true

shareRegistration.type

String

true

Must be one of [Email].

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJyTXV4ejFoMFFBMmFpb2ZhYks0UUtBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImZmMzM4MDc1LTk5NTQtNGJmMy05MThhLTAwYzYzODIzZWJlZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI4OCwiZXhwIjoxNzEyNjgyODg4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQ4MDdkYjE1LWUyNTYtNDhmZi1iMTQyLWE3NDNhNzQ2MDg5MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI4OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.a405K2AjIAB2eX1HQGgvzgXRwO0dh7oLMsGKRviUNP79KwCb36WODugBTsbHUhswBJKPJrOvjygwg4TWDnHHI_i66YU1lJjMc-DTbfOaBjpES04r-ddNH5PWZStGKcXP_M3zLIPZMZQG_itmWmaI9lI8d3qkQgLL93MrGJE3d1sKUtNgy2Gd8dKKvUpaEEPyUr7dKpXQ_FoXCTXEq61_mKeDPZIObMl_tfX9t6hpCF80zzNm6V3MHExrc6Tcg76Du7OqbRtdnSKckqlSX1CbjeZvBSWABIt0G9a6adu8K6q_yWm2dAagAKdMzYEH6EGY6pFfMiNCavk3ps_lygpAPA' \
    -d '{"networkId":"3b539d18-a762-4d00-a394-22b065dfc885","name":"Test endpoint 02","enrollmentMethod":{"ott":true,"updb":null,"ottca":null},"attributes":["#clients"],"shareRegistration":{"id":null,"toList":["fake@example.com"],"ccList":null,"subject":"New Endpoint!!","type":null}}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1420

{
  "id" : "f06736b2-8bac-4f93-8a8a-94d2cd8748dd",
  "ownerIdentityId" : "ff338075-9954-4bf3-918a-00c63823ebed",
  "createdBy" : "ff338075-9954-4bf3-918a-00c63823ebed",
  "createdAt" : "2024-04-09T16:14:48.358051Z",
  "updatedAt" : "2024-04-09T16:14:48.361362Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "3b539d18-a762-4d00-a394-22b065dfc885",
  "zitiId" : "16b41eea-f001-4e78-912b-92ef8449de6a",
  "name" : "Test endpoint 02",
  "typeId" : null,
  "appId" : "appId01",
  "appVersion" : "appVersion01",
  "branch" : "branch",
  "revision" : "rev01",
  "type" : "device",
  "version" : "version100",
  "arch" : "arch",
  "os" : "osd01",
  "osRelease" : "osrev01",
  "osVersion" : "ver01",
  "hasApiSession" : null,
  "hasEdgeRouterConnection" : null,
  "lastOnlineAt" : null,
  "syncId" : null,
  "syncResourceId" : null,
  "attributes" : [ ],
  "interceptConflicts" : [ ],
  "loopbackConflicts" : [ ],
  "jwt" : "jwthere",
  "online" : false,
  "mfaEnabled" : false,
  "managedBy" : "Unmanaged",
  "jwtExpiresAt" : "2024-04-09T16:14:48.330410Z",
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3b539d18-a762-4d00-a394-22b065dfc885",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/f06736b2-8bac-4f93-8a8a-94d2cd8748dd",
      "title" : "Test endpoint 02"
    }
  }
}

Patch Endpoint

PATCH /v2/endpoints/{id}

Authorization

This endpoint requires update action on the endpoint resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

externalId

Object

true

authPolicyId

Object

true

attributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/d518a2f4-e1e7-4878-b05c-7fc225937baa' -i -X PATCH \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ4Y2E3N2FJeWxmNWpfV2VMSVdZNTdBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImQyY2ZhY2U4LWUwYzItNDY1ZS1hODIzLTdkNGY2NmJlOGRkYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI4OCwiZXhwIjoxNzEyNjgyODg4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA3Yzg0MjNlLWY3ZWItNDQwNS04OWZkLTM3NDM1Y2U0ZDlmMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI4OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.d1cja52BbYRK43NjE8vOveAljmgVbxPy-rwAtB2CGpMBY8KM3BC8TZR43tVEotJ0bhZ-Jl1xcQQ4XwCll78mJAwlrgIH_h_mnRaUd4qhCtuDx8KGhxOWsqAREsnu2GVV1arY6iKIHzZtvf6R6i8Jk9sbHRCDPTuZxMin0vx4xdMcnb82XIxPrjWxRF4LjZOct7CoBCFkBhHdoJ0Ea6Gx59SrcM8h1U6f2MyTvhn5_3SFTgksWqVjHtlz-IikK2F0D-3i2yE0QMryJOUhw9btkcTtLs_NaGELqM7kBsjzw28PGUZTiIxHsORzvt4DvHxbjtpMOsxBJZeLrqGRU_5kkA' \
    -d '{"name":"Test endpoint 02 updated"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1383

{
  "id" : "d518a2f4-e1e7-4878-b05c-7fc225937baa",
  "ownerIdentityId" : "cb516819-044c-4e83-8805-978b5d1f6957",
  "createdBy" : "cb516819-044c-4e83-8805-978b5d1f6957",
  "createdAt" : "2024-04-09T16:14:48.631176Z",
  "updatedAt" : "2024-04-09T16:14:48.659891Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "fd2caad1-5fa0-4f87-ba59-064b5fcf23c4",
  "zitiId" : "ziti-id-1321",
  "name" : "Test endpoint 02 updated",
  "typeId" : "type",
  "appId" : "appId",
  "appVersion" : "appVersion",
  "branch" : "branch",
  "revision" : "revision",
  "type" : "User",
  "version" : "version",
  "arch" : "arch",
  "os" : "os",
  "osRelease" : "osRelease",
  "osVersion" : "osVersion",
  "hasApiSession" : false,
  "hasEdgeRouterConnection" : false,
  "lastOnlineAt" : null,
  "syncId" : null,
  "syncResourceId" : null,
  "attributes" : [ ],
  "interceptConflicts" : [ ],
  "loopbackConflicts" : [ ],
  "jwt" : null,
  "online" : false,
  "mfaEnabled" : false,
  "managedBy" : "Unmanaged",
  "jwtExpiresAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/fd2caad1-5fa0-4f87-ba59-064b5fcf23c4",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/d518a2f4-e1e7-4878-b05c-7fc225937baa",
      "title" : "Test endpoint 02 updated"
    }
  }
}

Delete Endpoint

DELETE /v2/endpoints/{id}

Authorization

This endpoint requires delete action on the endpoint resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/81598c48-2bbd-4819-a803-1dccd7b76ec3' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1UTh0U3A1UmdpSlpPbG5hZWtaM1VnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI1MjhiNjk2LWM2NDEtNDQyZC04ZjY0LTk5ZTA1ZGE2MTFlMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI4OCwiZXhwIjoxNzEyNjgyODg4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRjOTBlNjNlLWE0MzItNGQ4OS1iMjE2LTc4NzE3YWQyMmM2OVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI4OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Nx5XJEc3QbLhd15BIrALdQPO4HcpkM-cR749Him2cFFIOtWAT03Sg0Tr7vmgDOZi5unG4ONdfX4cjftvoHKxpMTFrp0_imip9jdERvm3KmLnBKIR9hgcsX6AiYJcPVX-26tNKr_yTSIY9qRsqyt76rBr0mUMGeh_096pH_KVEiD7ER5ht5Rj31zNqZmN3sbMERsStp5X8_-HIc2qlCyZWUNReUSxmlj-69QdnaAC-r-sfvg6LPGN-FSg1dK0Qd9wH_AgexRtQeLkiAqKbScBmbGVsYfo8T4W2aJvuqtBeD_H6CGIVlpKA5D5FyvLsTm9PJMiKP9SfU5ANUyRvVeY6Q'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1417

{
  "id" : "81598c48-2bbd-4819-a803-1dccd7b76ec3",
  "ownerIdentityId" : "7b5f5575-d1a1-4cb6-b9e3-800f31330f90",
  "createdBy" : "7b5f5575-d1a1-4cb6-b9e3-800f31330f90",
  "createdAt" : "2024-04-09T16:14:48.829430Z",
  "updatedAt" : "2024-04-09T16:14:48.840165Z",
  "deletedBy" : "2528b696-c641-442d-8f64-99e05da611e2",
  "deletedAt" : "2024-04-09T16:14:48.840Z",
  "networkId" : "ff3cdf40-25d8-4e64-a705-9f52970d83b1",
  "zitiId" : "ziti-id-1384",
  "name" : "endpoint-1383",
  "typeId" : "type",
  "appId" : "appId",
  "appVersion" : "appVersion",
  "branch" : "branch",
  "revision" : "revision",
  "type" : "User",
  "version" : "version",
  "arch" : "arch",
  "os" : "os",
  "osRelease" : "osRelease",
  "osVersion" : "osVersion",
  "hasApiSession" : false,
  "hasEdgeRouterConnection" : false,
  "lastOnlineAt" : null,
  "syncId" : null,
  "syncResourceId" : null,
  "attributes" : [ ],
  "interceptConflicts" : [ ],
  "loopbackConflicts" : [ ],
  "jwt" : null,
  "online" : false,
  "mfaEnabled" : false,
  "managedBy" : "Unmanaged",
  "jwtExpiresAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ff3cdf40-25d8-4e64-a705-9f52970d83b1",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/81598c48-2bbd-4819-a803-1dccd7b76ec3",
      "title" : "endpoint-1383"
    }
  }
}

Edge Routers

Find Edge Routers

GET /v2/edge-routers

Authorization

This endpoint requires read action on the edge-router resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

attributes

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

hostId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

zitiId

String

true

domainName

String

true

alternateDomainName

String

true

name

String

true

productVersion

Object

true

networkId

String

true

jwt

String

true

linkListener

Boolean

true

wssListener

Boolean

true

tunnelerEnabled

Boolean

true

noTraversal

Boolean

true

online

Boolean

true

verified

Boolean

true

enabled

Boolean

true

status

String

true

Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED].

softwareDeploymentStateId

String

true

provider

String

true

Deprecated..

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

region

String

true

Deprecated..

hostSize

String

true

Deprecated..

attributes

Array[String]

true

registration

Object

true

registration.id

String

true

registration.networkId

String

true

registration.edgeRouterId

String

true

registration.zitiId

String

true

registration.registrationAttempts

Integer

true

registration.expiresAt

String

true

registration.issuedAt

String

true

registration.usedAt

String

true

registration.createdAt

String

true

registration.createdBy

String

true

registration.updatedAt

String

true

registration.deletedAt

String

true

registration.deletedBy

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI2TkJPaUJxMTY1TEJBWG5jVy03WHd3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImNlODA3MjY2LTdjZjItNGJkMi1hNjAwLTk1YWI3ZGFjYTk4OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMzOCwiZXhwIjoxNzEyNjgyOTM4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQxNGNlMWIxLWI2MjMtNDVjZS1iZDJiLTA4MjNmNzA5MTQyMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMzOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.pdPizF9oEr_2fVUHsDDSy3RkhO_-UqJYEDvab10-oaHUJr0Jev6u-omwfyBip2FtygAAiRY7EdekjMOIPUJyISy-uHbFJXNW7ohSM4lW1E6zbcy2QooFYgD6qWdEiIarC77uD6xv-kud_JPgu2gcbimi3XLOcY-jgarCIE2wjbjWS5S1T8IyULJVw2Vi983kSoQeAvBbrICZoBAG7quIabdn-YhoysmKkvwhPpGlBW-oWR_OzLNCpxQk36W-uKlB3I3vhXIX5AH26PX0vIxymISxwRLaio5U1Vy1_iyoXMk4tWbwcN8Cs07-deYvRdW4MVk_hBFJUooqVBYoEGpfLA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 251365

{
  "_embedded" : {
    "edgeRouterList" : [ {
      "id" : "001696de-99cc-473e-87b0-68d17d44bcad",
      "hostId" : "493e8a0b-6a20-48db-87a5-49c3a90cdb5e",
      "ownerIdentityId" : "175a8ace-492f-449a-91b4-a8e347a90841",
      "createdBy" : "175a8ace-492f-449a-91b4-a8e347a90841",
      "createdAt" : "2024-04-09T16:15:38.075670Z",
      "updatedAt" : "2024-04-09T16:15:38.079332Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2657",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2656",
      "productVersion" : "7.3.36",
      "networkId" : "96647e5d-fe64-4952-a647-3364a3953ea6",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "356f50d4-3729-4c64-8a1b-fa28a7b92a69",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/356f50d4-3729-4c64-8a1b-fa28a7b92a69"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/493e8a0b-6a20-48db-87a5-49c3a90cdb5e"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/96647e5d-fe64-4952-a647-3364a3953ea6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/001696de-99cc-473e-87b0-68d17d44bcad",
          "title" : "er-test-2656"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/356f50d4-3729-4c64-8a1b-fa28a7b92a69",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "00216e47-bfe6-4125-bbb5-dcbc92bebaca",
      "hostId" : "0fb81824-88b6-4530-a87e-14eba11f821d",
      "ownerIdentityId" : "ee21e240-12a9-4a50-ab91-9a06cf3a9be1",
      "createdBy" : "ee21e240-12a9-4a50-ab91-9a06cf3a9be1",
      "createdAt" : "2024-04-09T16:15:34.248937Z",
      "updatedAt" : "2024-04-09T16:15:34.248937Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2380",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2379",
      "productVersion" : "7.3.36",
      "networkId" : "ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0fb81824-88b6-4530-a87e-14eba11f821d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/00216e47-bfe6-4125-bbb5-dcbc92bebaca",
          "title" : "er-test-2379"
        }
      }
    }, {
      "id" : "015a4971-635d-46c2-98d7-c1d4f5b14826",
      "hostId" : "468b79c1-53ee-4ae6-803b-1603c991f34d",
      "ownerIdentityId" : "6deccfac-fd5b-4db1-8323-3f3da54d1f97",
      "createdBy" : "6deccfac-fd5b-4db1-8323-3f3da54d1f97",
      "createdAt" : "2024-04-09T16:15:37.639459Z",
      "updatedAt" : "2024-04-09T16:15:37.639459Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2523",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "test-dns-zone-er-1",
      "productVersion" : "7.3.37",
      "networkId" : "64f4b1af-305c-4aef-84f3-38aa4c8fa9f7",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/468b79c1-53ee-4ae6-803b-1603c991f34d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/64f4b1af-305c-4aef-84f3-38aa4c8fa9f7",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/015a4971-635d-46c2-98d7-c1d4f5b14826",
          "title" : "test-dns-zone-er-1"
        }
      }
    }, {
      "id" : "01976330-3872-4b86-a1d5-b06c7c49526c",
      "hostId" : "90e3c37f-8ff9-40bf-9385-72f96a9f6d48",
      "ownerIdentityId" : "1520ecd3-ee67-4d97-81f4-715ec6332f28",
      "createdBy" : "1520ecd3-ee67-4d97-81f4-715ec6332f28",
      "createdAt" : "2024-04-09T16:15:33.365298Z",
      "updatedAt" : "2024-04-09T16:15:33.365298Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2107",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2106",
      "productVersion" : "7.3.36",
      "networkId" : "032a825a-e7e2-47a2-bbe7-1acb7df590eb",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/90e3c37f-8ff9-40bf-9385-72f96a9f6d48"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/032a825a-e7e2-47a2-bbe7-1acb7df590eb",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/01976330-3872-4b86-a1d5-b06c7c49526c",
          "title" : "er-test-2106"
        }
      }
    }, {
      "id" : "0397cc4f-f31f-40a2-8747-48bc67410e77",
      "hostId" : "d3cc9421-f121-4685-b071-e66c33fba1cb",
      "ownerIdentityId" : "7126607b-5e5c-463d-b535-12ff3911eb01",
      "createdBy" : "7126607b-5e5c-463d-b535-12ff3911eb01",
      "createdAt" : "2024-04-09T16:15:37.953591Z",
      "updatedAt" : "2024-04-09T16:15:37.953591Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2630",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2629",
      "productVersion" : "7.3.36",
      "networkId" : "1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d3cc9421-f121-4685-b071-e66c33fba1cb"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0397cc4f-f31f-40a2-8747-48bc67410e77",
          "title" : "er-test-2629"
        }
      }
    }, {
      "id" : "04480776-015b-4017-99b3-ddb22585b2f9",
      "hostId" : "c68f0d07-abc8-488e-849d-23dab7dca7d4",
      "ownerIdentityId" : "0dc9284d-f2c0-4cb4-9814-588aa60a4d4b",
      "createdBy" : "0dc9284d-f2c0-4cb4-9814-588aa60a4d4b",
      "createdAt" : "2024-04-09T16:15:34.052104Z",
      "updatedAt" : "2024-04-09T16:15:34.052104Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2315",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "test-dns-zone-er-1",
      "productVersion" : "7.3.37",
      "networkId" : "2734eb47-4ebc-47eb-aa9f-fb33faae39ec",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c68f0d07-abc8-488e-849d-23dab7dca7d4"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2734eb47-4ebc-47eb-aa9f-fb33faae39ec",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/04480776-015b-4017-99b3-ddb22585b2f9",
          "title" : "test-dns-zone-er-1"
        }
      }
    }, {
      "id" : "0b44be41-c392-4996-b4a5-126d1b55b5d4",
      "hostId" : "ed8b17db-4769-4dae-b691-a6874711feb2",
      "ownerIdentityId" : "be657375-9dcf-4ea1-a2e3-ebe541d34c06",
      "createdBy" : "be657375-9dcf-4ea1-a2e3-ebe541d34c06",
      "createdAt" : "2024-04-09T16:15:34.251799Z",
      "updatedAt" : "2024-04-09T16:15:34.251799Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2386",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2385",
      "productVersion" : "7.3.36",
      "networkId" : "ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ed8b17db-4769-4dae-b691-a6874711feb2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0b44be41-c392-4996-b4a5-126d1b55b5d4",
          "title" : "er-test-2385"
        }
      }
    }, {
      "id" : "0cb73307-2ea1-44b2-a8ab-2be90002c1bb",
      "hostId" : "2ae83cdb-d216-48ce-aca6-f17dad590eeb",
      "ownerIdentityId" : "0b6c0972-2bdd-42fc-b4dd-14a1bd9f10e5",
      "createdBy" : "0b6c0972-2bdd-42fc-b4dd-14a1bd9f10e5",
      "createdAt" : "2024-04-09T16:15:38.012365Z",
      "updatedAt" : "2024-04-09T16:15:38.012365Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2645",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2644",
      "productVersion" : "7.3.36",
      "networkId" : "800d734d-e97f-4a39-847b-8e469e114ebe",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2ae83cdb-d216-48ce-aca6-f17dad590eeb"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/800d734d-e97f-4a39-847b-8e469e114ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0cb73307-2ea1-44b2-a8ab-2be90002c1bb",
          "title" : "er-test-2644"
        }
      }
    }, {
      "id" : "0eac4c26-79bd-491b-9fa2-021dec1d40be",
      "hostId" : "c0882d36-5f25-4b8d-91b4-b2e3ff7bfe8d",
      "ownerIdentityId" : "c050a6b2-84cc-4ee8-a866-e2bbafcbd0a3",
      "createdBy" : "c050a6b2-84cc-4ee8-a866-e2bbafcbd0a3",
      "createdAt" : "2024-04-09T16:15:33.952058Z",
      "updatedAt" : "2024-04-09T16:15:33.952058Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2263",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2262",
      "productVersion" : "7.3.36",
      "networkId" : "6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c0882d36-5f25-4b8d-91b4-b2e3ff7bfe8d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0eac4c26-79bd-491b-9fa2-021dec1d40be",
          "title" : "er-test-2262"
        }
      }
    }, {
      "id" : "10390942-c166-4e09-a18a-36c2d4492d80",
      "hostId" : "bd90dda1-befe-4719-aff9-0d53a42351fc",
      "ownerIdentityId" : "3bce00d0-7a6a-4fc8-8779-64f1f896b232",
      "createdBy" : "3bce00d0-7a6a-4fc8-8779-64f1f896b232",
      "createdAt" : "2024-04-09T16:15:37.781790Z",
      "updatedAt" : "2024-04-09T16:15:37.786352Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2567",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2566",
      "productVersion" : "7.3.36",
      "networkId" : "8c766e18-ae38-46ee-b2b6-b0c58b08c232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "02098d7d-7259-430f-93f4-704c5af90906",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/02098d7d-7259-430f-93f4-704c5af90906"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bd90dda1-befe-4719-aff9-0d53a42351fc"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c766e18-ae38-46ee-b2b6-b0c58b08c232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/10390942-c166-4e09-a18a-36c2d4492d80",
          "title" : "er-test-2566"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/02098d7d-7259-430f-93f4-704c5af90906",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "10a45c52-b58e-4064-9f07-25765e9f79f9",
      "hostId" : "ad41b91a-dbee-49f6-a3e3-38897f9d73a2",
      "ownerIdentityId" : "b8429af0-f3b4-472f-8919-2a8f4863b60e",
      "createdBy" : "b8429af0-f3b4-472f-8919-2a8f4863b60e",
      "createdAt" : "2024-04-09T16:15:37.747394Z",
      "updatedAt" : "2024-04-09T16:15:37.747394Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2555",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2554",
      "productVersion" : "7.3.36",
      "networkId" : "8e87f965-07c4-4b1e-b300-12cf670e4708",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ad41b91a-dbee-49f6-a3e3-38897f9d73a2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8e87f965-07c4-4b1e-b300-12cf670e4708",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/10a45c52-b58e-4064-9f07-25765e9f79f9",
          "title" : "er-test-2554"
        }
      }
    }, {
      "id" : "110aa9e9-f700-48c9-a72f-ca94d042e9de",
      "hostId" : "3b6d58c0-3533-4bea-9b12-960831ff5e43",
      "ownerIdentityId" : "671035a4-f9d8-4cb6-9490-e0ffe5327657",
      "createdBy" : "671035a4-f9d8-4cb6-9490-e0ffe5327657",
      "createdAt" : "2024-04-09T16:15:37.951322Z",
      "updatedAt" : "2024-04-09T16:15:37.951322Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2624",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2623",
      "productVersion" : "7.3.36",
      "networkId" : "1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3b6d58c0-3533-4bea-9b12-960831ff5e43"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/110aa9e9-f700-48c9-a72f-ca94d042e9de",
          "title" : "er-test-2623"
        }
      }
    }, {
      "id" : "1211c5a0-c8c2-4f6d-bfde-8486b7bf3bdd",
      "hostId" : "a6104457-35ac-4e9c-b0ab-a8ffdd0cb73a",
      "ownerIdentityId" : "c865f5e4-56d2-411d-bb0e-89fcd4c76e43",
      "createdBy" : "c865f5e4-56d2-411d-bb0e-89fcd4c76e43",
      "createdAt" : "2024-04-09T16:15:37.746631Z",
      "updatedAt" : "2024-04-09T16:15:37.746631Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2552",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2551",
      "productVersion" : "7.3.36",
      "networkId" : "8e87f965-07c4-4b1e-b300-12cf670e4708",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a6104457-35ac-4e9c-b0ab-a8ffdd0cb73a"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8e87f965-07c4-4b1e-b300-12cf670e4708",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1211c5a0-c8c2-4f6d-bfde-8486b7bf3bdd",
          "title" : "er-test-2551"
        }
      }
    }, {
      "id" : "133eccf3-b8e0-430d-aa56-b595f2a58d95",
      "hostId" : "b2c4fae4-bdb5-4eb1-8748-1f8d99df107e",
      "ownerIdentityId" : "9c0c296d-1fae-4919-a3d0-eac015c6078c",
      "createdBy" : "9c0c296d-1fae-4919-a3d0-eac015c6078c",
      "createdAt" : "2024-04-09T16:15:34.044532Z",
      "updatedAt" : "2024-04-09T16:15:34.044532Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2299",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2298",
      "productVersion" : "7.3.36",
      "networkId" : "c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b2c4fae4-bdb5-4eb1-8748-1f8d99df107e"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/133eccf3-b8e0-430d-aa56-b595f2a58d95",
          "title" : "er-test-2298"
        }
      }
    }, {
      "id" : "150efbb5-6fb3-4f37-9843-6b7d118ec175",
      "hostId" : "0e620ba8-118f-43fa-8f42-64f4acf2cd55",
      "ownerIdentityId" : "5170a8ea-55f9-4124-b5af-c192642ce643",
      "createdBy" : "5170a8ea-55f9-4124-b5af-c192642ce643",
      "createdAt" : "2024-04-09T16:15:33.490781Z",
      "updatedAt" : "2024-04-09T16:15:33.494723Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2158",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2157",
      "productVersion" : "7.3.36",
      "networkId" : "a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "de811eae-a1b8-47f2-a770-ea2e374358c1",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/de811eae-a1b8-47f2-a770-ea2e374358c1"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0e620ba8-118f-43fa-8f42-64f4acf2cd55"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/150efbb5-6fb3-4f37-9843-6b7d118ec175",
          "title" : "er-test-2157"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/de811eae-a1b8-47f2-a770-ea2e374358c1",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "159e5597-0fa4-42cc-a187-313520489c5b",
      "hostId" : "1e98cb6c-515e-4d4a-90eb-4774ffd91a31",
      "ownerIdentityId" : "8d43aced-fa2e-4ae6-9742-b9ee31008a0d",
      "createdBy" : "8d43aced-fa2e-4ae6-9742-b9ee31008a0d",
      "createdAt" : "2024-04-09T16:15:33.808873Z",
      "updatedAt" : "2024-04-09T16:15:33.808873Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2215",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2214",
      "productVersion" : "7.3.36",
      "networkId" : "3fddf899-45a1-45ae-a883-c29ea5e86ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1e98cb6c-515e-4d4a-90eb-4774ffd91a31"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3fddf899-45a1-45ae-a883-c29ea5e86ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/159e5597-0fa4-42cc-a187-313520489c5b",
          "title" : "er-test-2214"
        }
      }
    }, {
      "id" : "1633d342-53f9-4e9d-962a-1f71fdc0960b",
      "hostId" : "d4611e89-93ea-445a-bd46-c2beff659dd0",
      "ownerIdentityId" : "5ee119eb-4dfc-4baf-9b64-6cbde688d9b8",
      "createdBy" : "5ee119eb-4dfc-4baf-9b64-6cbde688d9b8",
      "createdAt" : "2024-04-09T16:15:34.336178Z",
      "updatedAt" : "2024-04-09T16:15:34.336178Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2429",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2428",
      "productVersion" : "7.3.36",
      "networkId" : "62e026b1-2371-4b7f-8ca6-a53caf47497c",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d4611e89-93ea-445a-bd46-c2beff659dd0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/62e026b1-2371-4b7f-8ca6-a53caf47497c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1633d342-53f9-4e9d-962a-1f71fdc0960b",
          "title" : "er-test-2428"
        }
      }
    }, {
      "id" : "17b72581-21b3-4340-910e-92e69c7373f5",
      "hostId" : "98fa4973-47b5-4717-8fe2-ed0605750e11",
      "ownerIdentityId" : "905627c7-172b-442f-8c26-61ece7421526",
      "createdBy" : "905627c7-172b-442f-8c26-61ece7421526",
      "createdAt" : "2024-04-09T16:15:38.076682Z",
      "updatedAt" : "2024-04-09T16:15:38.076682Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2660",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2659",
      "productVersion" : "7.3.36",
      "networkId" : "96647e5d-fe64-4952-a647-3364a3953ea6",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/98fa4973-47b5-4717-8fe2-ed0605750e11"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/96647e5d-fe64-4952-a647-3364a3953ea6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/17b72581-21b3-4340-910e-92e69c7373f5",
          "title" : "er-test-2659"
        }
      }
    }, {
      "id" : "1a58b443-ccff-409c-bd67-1cdaea987c92",
      "hostId" : "c3c2c735-3654-4244-bd82-014ee1545c72",
      "ownerIdentityId" : "b696c200-483a-4321-8859-fe2c73de291a",
      "createdBy" : "b696c200-483a-4321-8859-fe2c73de291a",
      "createdAt" : "2024-04-09T16:15:33.189282Z",
      "updatedAt" : "2024-04-09T16:15:33.189282Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2071",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2070",
      "productVersion" : "7.3.36",
      "networkId" : "f5f936ae-361b-40dd-99eb-424e086c5bfc",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c3c2c735-3654-4244-bd82-014ee1545c72"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f5f936ae-361b-40dd-99eb-424e086c5bfc",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1a58b443-ccff-409c-bd67-1cdaea987c92",
          "title" : "er-test-2070"
        }
      }
    }, {
      "id" : "1caa44ca-99f4-4c37-8e7b-cb250ee867b1",
      "hostId" : "a51e9890-2f45-479b-9d65-1904851d57ed",
      "ownerIdentityId" : "8cb83fc0-8e79-4116-a2b2-070d824d783d",
      "createdBy" : "8cb83fc0-8e79-4116-a2b2-070d824d783d",
      "createdAt" : "2024-04-09T16:15:34.086179Z",
      "updatedAt" : "2024-04-09T16:15:34.089195Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2323",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2322",
      "productVersion" : "7.3.36",
      "networkId" : "7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "c005f6d4-d46c-48b9-b517-6e7ddc232f4a",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c005f6d4-d46c-48b9-b517-6e7ddc232f4a"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a51e9890-2f45-479b-9d65-1904851d57ed"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1caa44ca-99f4-4c37-8e7b-cb250ee867b1",
          "title" : "er-test-2322"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c005f6d4-d46c-48b9-b517-6e7ddc232f4a",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "1d5bfeb1-c130-451f-ad92-278842da6a9a",
      "hostId" : "1f3c5f58-7ca0-422d-a75e-f4c9b92bf0f0",
      "ownerIdentityId" : "51f6802b-fa97-430d-80fc-929fc4503ffb",
      "createdBy" : "51f6802b-fa97-430d-80fc-929fc4503ffb",
      "createdAt" : "2024-04-09T16:15:37.745785Z",
      "updatedAt" : "2024-04-09T16:15:37.749294Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2549",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2548",
      "productVersion" : "7.3.36",
      "networkId" : "8e87f965-07c4-4b1e-b300-12cf670e4708",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "600a3e0d-7290-4e5d-bdc2-be322f12a031",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/600a3e0d-7290-4e5d-bdc2-be322f12a031"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1f3c5f58-7ca0-422d-a75e-f4c9b92bf0f0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8e87f965-07c4-4b1e-b300-12cf670e4708",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1d5bfeb1-c130-451f-ad92-278842da6a9a",
          "title" : "er-test-2548"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/600a3e0d-7290-4e5d-bdc2-be322f12a031",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "1dbdeb60-6210-4558-a87e-2367c9e9b47f",
      "hostId" : "762c8c33-e58a-4308-bf50-2d36676432d2",
      "ownerIdentityId" : "7c2716ae-fe0b-44d3-8b0c-5b35331d260a",
      "createdBy" : "7c2716ae-fe0b-44d3-8b0c-5b35331d260a",
      "createdAt" : "2024-04-09T16:15:37.784017Z",
      "updatedAt" : "2024-04-09T16:15:37.784017Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2573",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2572",
      "productVersion" : "7.3.36",
      "networkId" : "8c766e18-ae38-46ee-b2b6-b0c58b08c232",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/762c8c33-e58a-4308-bf50-2d36676432d2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c766e18-ae38-46ee-b2b6-b0c58b08c232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1dbdeb60-6210-4558-a87e-2367c9e9b47f",
          "title" : "er-test-2572"
        }
      }
    }, {
      "id" : "1e95a621-dfb3-4fbd-9f60-f88419552eb5",
      "hostId" : "093cd90b-4966-4152-b2a0-df9456fcc3e0",
      "ownerIdentityId" : "99bf675d-1ed8-47a4-8bf7-308276decc2e",
      "createdBy" : "99bf675d-1ed8-47a4-8bf7-308276decc2e",
      "createdAt" : "2024-04-09T16:15:37.709942Z",
      "updatedAt" : "2024-04-09T16:15:37.709942Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2537",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2536",
      "productVersion" : "7.3.36",
      "networkId" : "6ae9a460-60d1-4cfa-9b81-cecb9108317e",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/093cd90b-4966-4152-b2a0-df9456fcc3e0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6ae9a460-60d1-4cfa-9b81-cecb9108317e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1e95a621-dfb3-4fbd-9f60-f88419552eb5",
          "title" : "er-test-2536"
        }
      }
    }, {
      "id" : "1eeed939-2ff3-495d-8581-42c310e69955",
      "hostId" : "32800655-5a7a-4af5-a00a-1e35505c7ca0",
      "ownerIdentityId" : "dbd4cea3-e512-4b59-829e-d18b1810cd90",
      "createdBy" : "dbd4cea3-e512-4b59-829e-d18b1810cd90",
      "createdAt" : "2024-04-09T16:15:37.825340Z",
      "updatedAt" : "2024-04-09T16:15:37.829529Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2585",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2584",
      "productVersion" : "7.3.36",
      "networkId" : "7aade141-ebb3-4b66-b234-e994b3870775",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "8fe24c07-567a-4751-b953-f8cb4b768a16",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8fe24c07-567a-4751-b953-f8cb4b768a16"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/32800655-5a7a-4af5-a00a-1e35505c7ca0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7aade141-ebb3-4b66-b234-e994b3870775",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1eeed939-2ff3-495d-8581-42c310e69955",
          "title" : "er-test-2584"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8fe24c07-567a-4751-b953-f8cb4b768a16",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "25e97126-e1f6-499a-8158-d1cdf69bb411",
      "hostId" : "8d92c421-8a49-4fe5-8010-c5281f88966d",
      "ownerIdentityId" : "d101ae61-4ee5-481a-b10c-83dddf3ada5a",
      "createdBy" : "d101ae61-4ee5-481a-b10c-83dddf3ada5a",
      "createdAt" : "2024-04-09T16:15:33.850808Z",
      "updatedAt" : "2024-04-09T16:15:33.850808Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2242",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2241",
      "productVersion" : "7.3.36",
      "networkId" : "35aa5161-98df-4ebb-a015-f069da5474fe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8d92c421-8a49-4fe5-8010-c5281f88966d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/35aa5161-98df-4ebb-a015-f069da5474fe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/25e97126-e1f6-499a-8158-d1cdf69bb411",
          "title" : "er-test-2241"
        }
      }
    }, {
      "id" : "2c806220-bca3-4227-9716-385a3a89617e",
      "hostId" : "814d0fa1-fbb9-4374-83c5-91a10f45c0a2",
      "ownerIdentityId" : "c5c9633a-8ff0-4b72-8fa0-106c9139c466",
      "createdBy" : "c5c9633a-8ff0-4b72-8fa0-106c9139c466",
      "createdAt" : "2024-04-09T16:15:38.013913Z",
      "updatedAt" : "2024-04-09T16:15:38.013913Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2648",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2647",
      "productVersion" : "7.3.36",
      "networkId" : "800d734d-e97f-4a39-847b-8e469e114ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/814d0fa1-fbb9-4374-83c5-91a10f45c0a2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/800d734d-e97f-4a39-847b-8e469e114ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2c806220-bca3-4227-9716-385a3a89617e",
          "title" : "er-test-2647"
        }
      }
    }, {
      "id" : "2df15d24-7607-4639-b5c9-146291592bdd",
      "hostId" : "2a8ee23d-4fe1-494a-bbb5-d4e4d5b7b7b2",
      "ownerIdentityId" : "f0791bf9-4fb3-4a3e-aa24-d9873c02d0aa",
      "createdBy" : "f0791bf9-4fb3-4a3e-aa24-d9873c02d0aa",
      "createdAt" : "2024-04-09T16:15:37.626667Z",
      "updatedAt" : "2024-04-09T16:15:37.626667Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2510",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2509",
      "productVersion" : "7.3.36",
      "networkId" : "d1ead057-36b0-4256-aa2d-74233fe726f9",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2a8ee23d-4fe1-494a-bbb5-d4e4d5b7b7b2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d1ead057-36b0-4256-aa2d-74233fe726f9",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2df15d24-7607-4639-b5c9-146291592bdd",
          "title" : "er-test-2509"
        }
      }
    }, {
      "id" : "30cf565b-589f-4fb6-beee-df74bb3c2f04",
      "hostId" : "199bc830-e4da-4259-9925-9477a286efa5",
      "ownerIdentityId" : "10f893f2-a9b9-4445-804f-d9d8e7ee91b4",
      "createdBy" : "10f893f2-a9b9-4445-804f-d9d8e7ee91b4",
      "createdAt" : "2024-04-09T16:15:34.046385Z",
      "updatedAt" : "2024-04-09T16:15:34.046385Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2305",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2304",
      "productVersion" : "7.3.36",
      "networkId" : "c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/199bc830-e4da-4259-9925-9477a286efa5"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/30cf565b-589f-4fb6-beee-df74bb3c2f04",
          "title" : "er-test-2304"
        }
      }
    }, {
      "id" : "31081cea-6df0-4ef1-a171-00be19740b28",
      "hostId" : "5f6ab7f9-f091-48ea-8185-b437bd58e552",
      "ownerIdentityId" : "d35eac66-dca1-411b-ac63-e19267b0004f",
      "createdBy" : "d35eac66-dca1-411b-ac63-e19267b0004f",
      "createdAt" : "2024-04-09T16:15:34.088299Z",
      "updatedAt" : "2024-04-09T16:15:34.088299Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2332",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2331",
      "productVersion" : "7.3.36",
      "networkId" : "7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5f6ab7f9-f091-48ea-8185-b437bd58e552"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/31081cea-6df0-4ef1-a171-00be19740b28",
          "title" : "er-test-2331"
        }
      }
    }, {
      "id" : "312c1ac0-04ff-4fc1-9d67-ed7991cf39b5",
      "hostId" : "20a52638-2807-4277-8881-3003513fd956",
      "ownerIdentityId" : "63a5a8d6-1122-49c8-a361-93e3fef82405",
      "createdBy" : "63a5a8d6-1122-49c8-a361-93e3fef82405",
      "createdAt" : "2024-04-09T16:15:33.493593Z",
      "updatedAt" : "2024-04-09T16:15:33.493593Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2167",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2166",
      "productVersion" : "7.3.36",
      "networkId" : "a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/20a52638-2807-4277-8881-3003513fd956"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/312c1ac0-04ff-4fc1-9d67-ed7991cf39b5",
          "title" : "er-test-2166"
        }
      }
    }, {
      "id" : "314e5508-5bd6-4a10-8e63-59cdb36f5830",
      "hostId" : "5df4c5ac-031a-41bd-8a47-c0fb323b856c",
      "ownerIdentityId" : "cf733225-60fe-458c-bc9d-219251e905b1",
      "createdBy" : "cf733225-60fe-458c-bc9d-219251e905b1",
      "createdAt" : "2024-04-09T16:15:33.492639Z",
      "updatedAt" : "2024-04-09T16:15:33.492639Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2164",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2163",
      "productVersion" : "7.3.36",
      "networkId" : "a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5df4c5ac-031a-41bd-8a47-c0fb323b856c"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/314e5508-5bd6-4a10-8e63-59cdb36f5830",
          "title" : "er-test-2163"
        }
      }
    }, {
      "id" : "3404c8e3-263b-45be-874b-8d82e2708688",
      "hostId" : "91736348-dfb7-43a8-8e2c-223c3515bdc9",
      "ownerIdentityId" : "2bc99010-0e72-4ecd-a1f9-80be611d08a3",
      "createdBy" : "2bc99010-0e72-4ecd-a1f9-80be611d08a3",
      "createdAt" : "2024-04-09T16:15:34.008642Z",
      "updatedAt" : "2024-04-09T16:15:34.008642Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2281",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2280",
      "productVersion" : "7.3.36",
      "networkId" : "6c8665ad-2605-448f-a94f-870f75f2e444",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/91736348-dfb7-43a8-8e2c-223c3515bdc9"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6c8665ad-2605-448f-a94f-870f75f2e444",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3404c8e3-263b-45be-874b-8d82e2708688",
          "title" : "er-test-2280"
        }
      }
    }, {
      "id" : "36a2b19b-55e2-4c04-ac47-1e9bc677d724",
      "hostId" : "9999ff5d-c645-4e9d-b089-65ce07dae63c",
      "ownerIdentityId" : "28718466-d7c9-4acd-89af-5c4b5e9d6b20",
      "createdBy" : "28718466-d7c9-4acd-89af-5c4b5e9d6b20",
      "createdAt" : "2024-04-09T16:15:33.400670Z",
      "updatedAt" : "2024-04-09T16:15:33.400670Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2128",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2127",
      "productVersion" : "7.3.36",
      "networkId" : "7a0c316e-b9de-47ed-8b29-13f65537f248",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9999ff5d-c645-4e9d-b089-65ce07dae63c"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a0c316e-b9de-47ed-8b29-13f65537f248",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/36a2b19b-55e2-4c04-ac47-1e9bc677d724",
          "title" : "er-test-2127"
        }
      }
    }, {
      "id" : "383a3788-98d5-4aa0-ab7f-36bed0e69abb",
      "hostId" : "7cf08634-b3e6-42a4-bf30-50e49cd5fce9",
      "ownerIdentityId" : "2434a85e-6012-4a16-a9f1-22d76bab8866",
      "createdBy" : "2434a85e-6012-4a16-a9f1-22d76bab8866",
      "createdAt" : "2024-04-09T16:15:33.590168Z",
      "updatedAt" : "2024-04-09T16:15:33.590168Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2200",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2199",
      "productVersion" : "7.3.36",
      "networkId" : "013f0628-5b4d-4b93-8d20-95bebd2e1232",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7cf08634-b3e6-42a4-bf30-50e49cd5fce9"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/013f0628-5b4d-4b93-8d20-95bebd2e1232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/383a3788-98d5-4aa0-ab7f-36bed0e69abb",
          "title" : "er-test-2199"
        }
      }
    }, {
      "id" : "384e7f4e-740f-4c2d-bf9c-304e41fe4b04",
      "hostId" : "cdffe949-6857-4f23-8934-1add3d6e33f3",
      "ownerIdentityId" : "18a6f0c9-6b4d-4a42-8fd2-8469e84cc604",
      "createdBy" : "18a6f0c9-6b4d-4a42-8fd2-8469e84cc604",
      "createdAt" : "2024-04-09T16:15:34.418087Z",
      "updatedAt" : "2024-04-09T16:15:34.421128Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2468",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2467",
      "productVersion" : "7.3.36",
      "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "528e6475-a0f4-45a0-8bae-1c643b7fbe7c",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/528e6475-a0f4-45a0-8bae-1c643b7fbe7c"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cdffe949-6857-4f23-8934-1add3d6e33f3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/384e7f4e-740f-4c2d-bf9c-304e41fe4b04",
          "title" : "er-test-2467"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/528e6475-a0f4-45a0-8bae-1c643b7fbe7c",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "39517be7-a9c7-4be8-9cec-17332be5f216",
      "hostId" : "7f118755-a1e4-4f11-a494-04a0e569fbad",
      "ownerIdentityId" : "a2bf6520-f305-4946-98e3-065b1ad760e6",
      "createdBy" : "a2bf6520-f305-4946-98e3-065b1ad760e6",
      "createdAt" : "2024-04-09T16:15:33.810412Z",
      "updatedAt" : "2024-04-09T16:15:33.810412Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2221",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2220",
      "productVersion" : "7.3.36",
      "networkId" : "3fddf899-45a1-45ae-a883-c29ea5e86ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7f118755-a1e4-4f11-a494-04a0e569fbad"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3fddf899-45a1-45ae-a883-c29ea5e86ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/39517be7-a9c7-4be8-9cec-17332be5f216",
          "title" : "er-test-2220"
        }
      }
    }, {
      "id" : "39ade7ee-6e25-4883-b9f1-a22d04039a3f",
      "hostId" : "a8686c08-8709-4f2e-ac8b-7fd5672e25b1",
      "ownerIdentityId" : "97d82a08-9b78-4e6a-adc9-e88f12eb6db7",
      "createdBy" : "97d82a08-9b78-4e6a-adc9-e88f12eb6db7",
      "createdAt" : "2024-04-09T16:15:37.708669Z",
      "updatedAt" : "2024-04-09T16:15:37.708669Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2534",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2533",
      "productVersion" : "7.3.36",
      "networkId" : "6ae9a460-60d1-4cfa-9b81-cecb9108317e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a8686c08-8709-4f2e-ac8b-7fd5672e25b1"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6ae9a460-60d1-4cfa-9b81-cecb9108317e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/39ade7ee-6e25-4883-b9f1-a22d04039a3f",
          "title" : "er-test-2533"
        }
      }
    }, {
      "id" : "39d420d3-991b-4d11-b3f3-d29922c41125",
      "hostId" : "18aaef02-4c93-44fc-ab59-4ee773087c77",
      "ownerIdentityId" : "f6ee011b-3232-468c-bc43-9604820263dc",
      "createdBy" : "f6ee011b-3232-468c-bc43-9604820263dc",
      "createdAt" : "2024-04-09T16:15:33.315639Z",
      "updatedAt" : "2024-04-09T16:15:33.315639Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2092",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2091",
      "productVersion" : "7.3.36",
      "networkId" : "63a8ea3f-6e94-417e-9346-b4a5212eb182",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/18aaef02-4c93-44fc-ab59-4ee773087c77"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/63a8ea3f-6e94-417e-9346-b4a5212eb182",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/39d420d3-991b-4d11-b3f3-d29922c41125",
          "title" : "er-test-2091"
        }
      }
    }, {
      "id" : "39dbfd7f-ef1d-47ea-932d-4cd332f92393",
      "hostId" : "8c5d5c68-32a3-49bb-9699-001f6ad1191a",
      "ownerIdentityId" : "7982273a-d212-44ff-894c-a12c7dd83050",
      "createdBy" : "7982273a-d212-44ff-894c-a12c7dd83050",
      "createdAt" : "2024-04-09T16:15:34.007606Z",
      "updatedAt" : "2024-04-09T16:15:34.012419Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2278",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2277",
      "productVersion" : "7.3.36",
      "networkId" : "6c8665ad-2605-448f-a94f-870f75f2e444",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "7d20cb51-6221-4b29-ae1c-fc2640ef78e1",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7d20cb51-6221-4b29-ae1c-fc2640ef78e1"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8c5d5c68-32a3-49bb-9699-001f6ad1191a"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6c8665ad-2605-448f-a94f-870f75f2e444",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/39dbfd7f-ef1d-47ea-932d-4cd332f92393",
          "title" : "er-test-2277"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7d20cb51-6221-4b29-ae1c-fc2640ef78e1",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "3c2ec426-08d8-4672-bf25-3144906afce0",
      "hostId" : "5cb37220-5db4-4a43-8b58-630cdd15c57f",
      "ownerIdentityId" : "f8b916db-e214-425f-bd51-36eec3c5850b",
      "createdBy" : "f8b916db-e214-425f-bd51-36eec3c5850b",
      "createdAt" : "2024-04-09T16:15:33.909001Z",
      "updatedAt" : "2024-04-09T16:15:33.919013Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "f3ef77a4-9db1-456a-9cd6-e1cd8e98e22b",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "edgerouter-2252",
      "productVersion" : "7.3.36",
      "networkId" : "35aa5161-98df-4ebb-a015-f069da5474fe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "fece6b49-7cc0-4f5d-b720-754d5ef01806",
      "provider" : "CUSTOMER",
      "region" : null,
      "hostSize" : null,
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fece6b49-7cc0-4f5d-b720-754d5ef01806"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5cb37220-5db4-4a43-8b58-630cdd15c57f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/35aa5161-98df-4ebb-a015-f069da5474fe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3c2ec426-08d8-4672-bf25-3144906afce0",
          "title" : "edgerouter-2252"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fece6b49-7cc0-4f5d-b720-754d5ef01806",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "4091e0b2-a870-461c-896d-6d87d04f42bd",
      "hostId" : "a00aae0a-e0cf-4a29-8632-4beb376912d4",
      "ownerIdentityId" : "9824be18-00fc-4d85-8523-1f1eed392b8f",
      "createdBy" : "9824be18-00fc-4d85-8523-1f1eed392b8f",
      "createdAt" : "2024-04-09T16:15:34.174819Z",
      "updatedAt" : "2024-04-09T16:15:34.183061Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "jxNq3kzL-b9IVXfZwJKwg",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "Test edge router 1712679334",
      "productVersion" : "7.3.36",
      "networkId" : "2d3f69f6-74b0-4260-b74d-478194eeac96",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : true,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONING",
      "softwareDeploymentStateId" : "8b5b2ce4-3056-4e3a-b655-704c9b50b184",
      "provider" : "CUSTOMER",
      "region" : null,
      "hostSize" : null,
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8b5b2ce4-3056-4e3a-b655-704c9b50b184"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a00aae0a-e0cf-4a29-8632-4beb376912d4"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d3f69f6-74b0-4260-b74d-478194eeac96",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4091e0b2-a870-461c-896d-6d87d04f42bd",
          "title" : "Test edge router 1712679334"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8b5b2ce4-3056-4e3a-b655-704c9b50b184",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "41d05bc8-c525-48c1-91a8-f2073c6bfa87",
      "hostId" : "ed7288b8-af50-4963-8f86-aa8ac68bdcc8",
      "ownerIdentityId" : "47fd97f0-e388-4f69-abad-52ec5855d5cf",
      "createdBy" : "47fd97f0-e388-4f69-abad-52ec5855d5cf",
      "createdAt" : "2024-04-09T16:15:34.437220Z",
      "updatedAt" : "2024-04-09T16:15:34.453802Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "uuDUn3Sscol4COypm-NZW",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "Test edge router 1712679334",
      "productVersion" : "7.3.36",
      "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
      "jwt" : null,
      "linkListener" : false,
      "tunnelerEnabled" : false,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "ERROR",
      "softwareDeploymentStateId" : "fd751f81-221e-490e-bb58-2cdee11f31ca",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fd751f81-221e-490e-bb58-2cdee11f31ca"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ed7288b8-af50-4963-8f86-aa8ac68bdcc8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/41d05bc8-c525-48c1-91a8-f2073c6bfa87",
          "title" : "Test edge router 1712679334"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fd751f81-221e-490e-bb58-2cdee11f31ca",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "421ac3e2-f8e6-4047-b2f8-697dbdd3ac90",
      "hostId" : "feced0f6-828d-46e7-97fd-08e955a105da",
      "ownerIdentityId" : "d62525a8-adf6-4de6-ab57-235b94c96d41",
      "createdBy" : "d62525a8-adf6-4de6-ab57-235b94c96d41",
      "createdAt" : "2024-04-09T16:15:33.952917Z",
      "updatedAt" : "2024-04-09T16:15:33.952917Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2266",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2265",
      "productVersion" : "7.3.36",
      "networkId" : "6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/feced0f6-828d-46e7-97fd-08e955a105da"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/421ac3e2-f8e6-4047-b2f8-697dbdd3ac90",
          "title" : "er-test-2265"
        }
      }
    }, {
      "id" : "42ac45f9-c31e-4053-8800-819f59325bd1",
      "hostId" : "e4fb4060-5992-4792-ba07-7da48791b8fc",
      "ownerIdentityId" : "2e788731-fb19-4763-95a1-f333ba6cfade",
      "createdBy" : "2e788731-fb19-4763-95a1-f333ba6cfade",
      "createdAt" : "2024-04-09T16:15:33.316370Z",
      "updatedAt" : "2024-04-09T16:15:33.316370Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2095",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2094",
      "productVersion" : "7.3.36",
      "networkId" : "63a8ea3f-6e94-417e-9346-b4a5212eb182",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e4fb4060-5992-4792-ba07-7da48791b8fc"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/63a8ea3f-6e94-417e-9346-b4a5212eb182",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/42ac45f9-c31e-4053-8800-819f59325bd1",
          "title" : "er-test-2094"
        }
      }
    }, {
      "id" : "4422a54d-d71b-4a5f-9630-4d56ad492abe",
      "hostId" : "805beaa1-294c-48ed-851e-e449c2a740fe",
      "ownerIdentityId" : "07902448-f33f-4531-9f9c-52f082b54900",
      "createdBy" : "07902448-f33f-4531-9f9c-52f082b54900",
      "createdAt" : "2024-04-09T16:15:33.809633Z",
      "updatedAt" : "2024-04-09T16:15:33.809633Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2218",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2217",
      "productVersion" : "7.3.36",
      "networkId" : "3fddf899-45a1-45ae-a883-c29ea5e86ebe",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/805beaa1-294c-48ed-851e-e449c2a740fe"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3fddf899-45a1-45ae-a883-c29ea5e86ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4422a54d-d71b-4a5f-9630-4d56ad492abe",
          "title" : "er-test-2217"
        }
      }
    }, {
      "id" : "44884195-a837-409b-b86e-960533d6d585",
      "hostId" : "2de95643-154f-4d9e-b34e-a4ff4dd337e7",
      "ownerIdentityId" : "fa9b15d2-fc2f-4c1d-8c81-2e4ee98020bf",
      "createdBy" : "fa9b15d2-fc2f-4c1d-8c81-2e4ee98020bf",
      "createdAt" : "2024-04-09T16:15:34.420233Z",
      "updatedAt" : "2024-04-09T16:15:34.420233Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2477",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2476",
      "productVersion" : "7.3.36",
      "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2de95643-154f-4d9e-b34e-a4ff4dd337e7"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/44884195-a837-409b-b86e-960533d6d585",
          "title" : "er-test-2476"
        }
      }
    }, {
      "id" : "473d44bc-6ca3-4e7d-8cd4-3903ff76f46c",
      "hostId" : "dda68ef3-3e70-4ec8-aab1-d0173838f387",
      "ownerIdentityId" : "0cf06c4a-669f-4e91-8540-a2870528bda6",
      "createdBy" : "0cf06c4a-669f-4e91-8540-a2870528bda6",
      "createdAt" : "2024-04-09T16:15:34.378535Z",
      "updatedAt" : "2024-04-09T16:15:34.378535Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2447",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2446",
      "productVersion" : "7.3.36",
      "networkId" : "daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dda68ef3-3e70-4ec8-aab1-d0173838f387"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/473d44bc-6ca3-4e7d-8cd4-3903ff76f46c",
          "title" : "er-test-2446"
        }
      }
    }, {
      "id" : "4757c2d8-5e7c-414e-a7a0-b7de46504992",
      "hostId" : "a540c5f1-73b7-41b6-808e-f7ca95d95f35",
      "ownerIdentityId" : "79522509-d70c-43ff-9a14-31fe7d4247bd",
      "createdBy" : "79522509-d70c-43ff-9a14-31fe7d4247bd",
      "createdAt" : "2024-04-09T16:15:33.814886Z",
      "updatedAt" : "2024-04-09T16:15:33.814886Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2231",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-ziti-features-2230",
      "productVersion" : "7.3.33",
      "networkId" : "fc5c0c18-affb-49b1-ac3e-d5495a905995",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a540c5f1-73b7-41b6-808e-f7ca95d95f35"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/fc5c0c18-affb-49b1-ac3e-d5495a905995",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4757c2d8-5e7c-414e-a7a0-b7de46504992",
          "title" : "er-ziti-features-2230"
        }
      }
    }, {
      "id" : "48d53ce2-24ec-44c8-99de-489ddf2bc455",
      "hostId" : "695c3155-9aa6-41e8-8370-8c57c0c468ef",
      "ownerIdentityId" : "8ff24c25-bb54-4c90-8e6e-ccb1a7cde482",
      "createdBy" : "8ff24c25-bb54-4c90-8e6e-ccb1a7cde482",
      "createdAt" : "2024-04-09T16:15:33.451556Z",
      "updatedAt" : "2024-04-09T16:15:33.451556Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2143",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2142",
      "productVersion" : "7.3.36",
      "networkId" : "41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/695c3155-9aa6-41e8-8370-8c57c0c468ef"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/48d53ce2-24ec-44c8-99de-489ddf2bc455",
          "title" : "er-test-2142"
        }
      }
    }, {
      "id" : "4b596bf6-6272-47d9-afbc-41eb6436e698",
      "hostId" : "cd54d5c3-d2ae-43ab-ab36-7158406e92ad",
      "ownerIdentityId" : "5eefdc5c-f36c-4442-a0c2-ff0cad60da08",
      "createdBy" : "5eefdc5c-f36c-4442-a0c2-ff0cad60da08",
      "createdAt" : "2024-04-09T16:15:38.010095Z",
      "updatedAt" : "2024-04-09T16:15:38.015035Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2639",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2638",
      "productVersion" : "7.3.36",
      "networkId" : "800d734d-e97f-4a39-847b-8e469e114ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "416c893b-51d3-46f3-9466-379d60e03d46",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/416c893b-51d3-46f3-9466-379d60e03d46"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cd54d5c3-d2ae-43ab-ab36-7158406e92ad"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/800d734d-e97f-4a39-847b-8e469e114ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4b596bf6-6272-47d9-afbc-41eb6436e698",
          "title" : "er-test-2638"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/416c893b-51d3-46f3-9466-379d60e03d46",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "4ff8e5c2-13de-4cd4-8d35-a87fd5354291",
      "hostId" : "7b6edac3-2086-429b-a469-1910b6e76b97",
      "ownerIdentityId" : "3aeb5202-0f01-4999-b98c-c518a5e3a988",
      "createdBy" : "3aeb5202-0f01-4999-b98c-c518a5e3a988",
      "createdAt" : "2024-04-09T16:15:33.951083Z",
      "updatedAt" : "2024-04-09T16:15:33.974238Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2260",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2259",
      "productVersion" : "7.3.36",
      "networkId" : "6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "d2bb5152-37d6-4b18-ba0f-718ab05fd5ce",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d2bb5152-37d6-4b18-ba0f-718ab05fd5ce"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7b6edac3-2086-429b-a469-1910b6e76b97"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4ff8e5c2-13de-4cd4-8d35-a87fd5354291",
          "title" : "er-test-2259"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d2bb5152-37d6-4b18-ba0f-718ab05fd5ce",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "54de15f1-22d3-4a0d-8426-ec68c0b1e505",
      "hostId" : "a8fd6e55-da77-4d5e-9a62-2d1c96121ed0",
      "ownerIdentityId" : "ab88b24b-e2d7-4b8f-9ef2-a2584b708968",
      "createdBy" : "ab88b24b-e2d7-4b8f-9ef2-a2584b708968",
      "createdAt" : "2024-04-09T16:15:33.851614Z",
      "updatedAt" : "2024-04-09T16:15:33.851614Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2245",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2244",
      "productVersion" : "7.3.36",
      "networkId" : "35aa5161-98df-4ebb-a015-f069da5474fe",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a8fd6e55-da77-4d5e-9a62-2d1c96121ed0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/35aa5161-98df-4ebb-a015-f069da5474fe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/54de15f1-22d3-4a0d-8426-ec68c0b1e505",
          "title" : "er-test-2244"
        }
      }
    }, {
      "id" : "58d371ad-c3ce-47db-9249-479e5bc4aedd",
      "hostId" : "43778cfa-a418-4103-be86-8ed51afa1b77",
      "ownerIdentityId" : "71299114-0d6c-4515-9c02-efeab5f316d5",
      "createdBy" : "71299114-0d6c-4515-9c02-efeab5f316d5",
      "createdAt" : "2024-04-09T16:15:33.240955Z",
      "updatedAt" : "2024-04-09T16:15:33.255086Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "h4pqFIWdGy8qDrIITNgz-",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "Test edge router 1712679333",
      "productVersion" : "7.3.36",
      "networkId" : "f5f936ae-361b-40dd-99eb-424e086c5bfc",
      "jwt" : null,
      "linkListener" : false,
      "tunnelerEnabled" : false,
      "noTraversal" : true,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "ef42868d-0d4c-41dc-82bf-8cde6d9c6e90",
      "provider" : "CUSTOMER",
      "region" : null,
      "hostSize" : null,
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ef42868d-0d4c-41dc-82bf-8cde6d9c6e90"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/43778cfa-a418-4103-be86-8ed51afa1b77"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f5f936ae-361b-40dd-99eb-424e086c5bfc",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/58d371ad-c3ce-47db-9249-479e5bc4aedd",
          "title" : "Test edge router 1712679333"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ef42868d-0d4c-41dc-82bf-8cde6d9c6e90",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "5bd9e821-5dac-41f3-aa29-05b3d0373c82",
      "hostId" : "97cbd684-3226-445d-9009-36f827d76886",
      "ownerIdentityId" : "7c30e6c1-1525-4fec-838a-cc2c709f8661",
      "createdBy" : "7c30e6c1-1525-4fec-838a-cc2c709f8661",
      "createdAt" : "2024-04-09T16:15:34.377824Z",
      "updatedAt" : "2024-04-09T16:15:34.377824Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2444",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2443",
      "productVersion" : "7.3.36",
      "networkId" : "daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/97cbd684-3226-445d-9009-36f827d76886"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5bd9e821-5dac-41f3-aa29-05b3d0373c82",
          "title" : "er-test-2443"
        }
      }
    }, {
      "id" : "5ca472a2-0a2a-4920-99cf-11787091e35a",
      "hostId" : "e56a0f51-e995-41d8-b8df-60094a57dd6b",
      "ownerIdentityId" : "5c4eb2c3-c2b2-4ccf-833d-1d990178aed2",
      "createdBy" : "5c4eb2c3-c2b2-4ccf-833d-1d990178aed2",
      "createdAt" : "2024-04-09T16:15:33.452289Z",
      "updatedAt" : "2024-04-09T16:15:33.452289Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2146",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2145",
      "productVersion" : "7.3.36",
      "networkId" : "41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e56a0f51-e995-41d8-b8df-60094a57dd6b"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5ca472a2-0a2a-4920-99cf-11787091e35a",
          "title" : "er-test-2145"
        }
      }
    }, {
      "id" : "5ca80659-9280-495f-8fad-23663305756d",
      "hostId" : "0cbcf4ee-cfa3-4183-8c0d-0fb84acfee20",
      "ownerIdentityId" : "3fbb0cb9-57aa-45da-9355-78c014e1fcd2",
      "createdBy" : "3fbb0cb9-57aa-45da-9355-78c014e1fcd2",
      "createdAt" : "2024-04-09T16:15:34.377089Z",
      "updatedAt" : "2024-04-09T16:15:34.380193Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2441",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2440",
      "productVersion" : "7.3.36",
      "networkId" : "daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "178b5db8-b082-4282-9cd6-ad3398f0b334",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/178b5db8-b082-4282-9cd6-ad3398f0b334"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0cbcf4ee-cfa3-4183-8c0d-0fb84acfee20"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5ca80659-9280-495f-8fad-23663305756d",
          "title" : "er-test-2440"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/178b5db8-b082-4282-9cd6-ad3398f0b334",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "5dff7c7a-f469-420e-854c-f674ee06aa4b",
      "hostId" : "b1c95501-951f-45e6-9fa5-3e1a28ec2438",
      "ownerIdentityId" : "8596c664-f3cb-40ba-99ac-a96ad5cfc491",
      "createdBy" : "8596c664-f3cb-40ba-99ac-a96ad5cfc491",
      "createdAt" : "2024-04-09T16:15:38.219240Z",
      "updatedAt" : "2024-04-09T16:15:38.219240Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2709",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2708",
      "productVersion" : "7.3.36",
      "networkId" : "787d0693-403b-4115-9862-470476a91b90",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b1c95501-951f-45e6-9fa5-3e1a28ec2438"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/787d0693-403b-4115-9862-470476a91b90",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5dff7c7a-f469-420e-854c-f674ee06aa4b",
          "title" : "er-test-2708"
        }
      }
    }, {
      "id" : "60e68f5f-b4ca-4055-91c8-b531c791c92a",
      "hostId" : "5f6b8b1a-af16-4d40-b38a-9f8b0ae0a4d5",
      "ownerIdentityId" : "cdfeffba-571c-4d16-b462-3130211947f5",
      "createdBy" : "cdfeffba-571c-4d16-b462-3130211947f5",
      "createdAt" : "2024-04-09T16:15:34.152201Z",
      "updatedAt" : "2024-04-09T16:15:34.155927Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2359",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2358",
      "productVersion" : "7.3.36",
      "networkId" : "2d3f69f6-74b0-4260-b74d-478194eeac96",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "be886064-af6e-428c-9897-f96137a4ccf6",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/be886064-af6e-428c-9897-f96137a4ccf6"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5f6b8b1a-af16-4d40-b38a-9f8b0ae0a4d5"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d3f69f6-74b0-4260-b74d-478194eeac96",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/60e68f5f-b4ca-4055-91c8-b531c791c92a",
          "title" : "er-test-2358"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/be886064-af6e-428c-9897-f96137a4ccf6",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "612d3ba7-d056-4dc7-ab90-741b7454879a",
      "hostId" : "532c51ed-e4b8-44f7-a736-d6f426f5de67",
      "ownerIdentityId" : "218d2252-75f2-44b1-ad0c-c854cf52686e",
      "createdBy" : "218d2252-75f2-44b1-ad0c-c854cf52686e",
      "createdAt" : "2024-04-09T16:15:34.043474Z",
      "updatedAt" : "2024-04-09T16:15:34.047530Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2296",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2295",
      "productVersion" : "7.3.36",
      "networkId" : "c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "897bf4c6-55ae-4510-89d8-7e73dce6ba2c",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/897bf4c6-55ae-4510-89d8-7e73dce6ba2c"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/532c51ed-e4b8-44f7-a736-d6f426f5de67"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/612d3ba7-d056-4dc7-ab90-741b7454879a",
          "title" : "er-test-2295"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/897bf4c6-55ae-4510-89d8-7e73dce6ba2c",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "620bdfbf-bf9f-4284-b697-9b9110be87e3",
      "hostId" : "626e2f3b-7a35-4da6-90a9-b023bb519c46",
      "ownerIdentityId" : "e6c5f900-dad0-4997-aafe-6e0765866be7",
      "createdBy" : "e6c5f900-dad0-4997-aafe-6e0765866be7",
      "createdAt" : "2024-04-09T16:15:33.313999Z",
      "updatedAt" : "2024-04-09T16:15:33.334464Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2086",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2085",
      "productVersion" : "7.3.36",
      "networkId" : "63a8ea3f-6e94-417e-9346-b4a5212eb182",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "433f473f-377e-4c27-845f-d467aaa19730",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/433f473f-377e-4c27-845f-d467aaa19730"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/626e2f3b-7a35-4da6-90a9-b023bb519c46"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/63a8ea3f-6e94-417e-9346-b4a5212eb182",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/620bdfbf-bf9f-4284-b697-9b9110be87e3",
          "title" : "er-test-2085"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/433f473f-377e-4c27-845f-d467aaa19730",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "685f8472-22ac-4a6b-ad76-fd62e8b9a96b",
      "hostId" : "bea64ba7-a194-4c80-a90a-45205836cc32",
      "ownerIdentityId" : "55e8e6e0-fd04-45e7-92f8-d41ec55e8fdd",
      "createdBy" : "55e8e6e0-fd04-45e7-92f8-d41ec55e8fdd",
      "createdAt" : "2024-04-09T16:15:38.218467Z",
      "updatedAt" : "2024-04-09T16:15:38.218467Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2706",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2705",
      "productVersion" : "7.3.36",
      "networkId" : "787d0693-403b-4115-9862-470476a91b90",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bea64ba7-a194-4c80-a90a-45205836cc32"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/787d0693-403b-4115-9862-470476a91b90",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/685f8472-22ac-4a6b-ad76-fd62e8b9a96b",
          "title" : "er-test-2705"
        }
      }
    }, {
      "id" : "6b90b3e0-176a-4b80-bd02-aeb7a6c65153",
      "hostId" : "8b50029e-4706-4894-aea2-89c4583eb5f5",
      "ownerIdentityId" : "d06ae006-4860-4338-8b44-9b33f2339f89",
      "createdBy" : "d06ae006-4860-4338-8b44-9b33f2339f89",
      "createdAt" : "2024-04-09T16:15:34.250261Z",
      "updatedAt" : "2024-04-09T16:15:34.250261Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2383",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2382",
      "productVersion" : "7.3.36",
      "networkId" : "ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8b50029e-4706-4894-aea2-89c4583eb5f5"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6b90b3e0-176a-4b80-bd02-aeb7a6c65153",
          "title" : "er-test-2382"
        }
      }
    }, {
      "id" : "6e002b74-581d-4db9-a0dc-b88241f241bf",
      "hostId" : "fe2cd510-9f45-4529-995f-ea023fef1ce8",
      "ownerIdentityId" : "489a5cfe-17b1-4cb1-9d3a-32126cd9e60f",
      "createdBy" : "489a5cfe-17b1-4cb1-9d3a-32126cd9e60f",
      "createdAt" : "2024-04-09T16:15:34.117978Z",
      "updatedAt" : "2024-04-09T16:15:34.117978Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2350",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2349",
      "productVersion" : "7.3.36",
      "networkId" : "4b750e3a-75c4-4a15-ae2b-66cd49447675",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fe2cd510-9f45-4529-995f-ea023fef1ce8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4b750e3a-75c4-4a15-ae2b-66cd49447675",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6e002b74-581d-4db9-a0dc-b88241f241bf",
          "title" : "er-test-2349"
        }
      }
    }, {
      "id" : "6f38deec-3bd5-4dd7-842c-42c972e58481",
      "hostId" : "d281796f-58d3-4292-9d2c-119407bceeec",
      "ownerIdentityId" : "35a91ccd-f89a-467f-a368-a0c32b246181",
      "createdBy" : "35a91ccd-f89a-467f-a368-a0c32b246181",
      "createdAt" : "2024-04-09T16:15:37.950241Z",
      "updatedAt" : "2024-04-09T16:15:37.975092Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2621",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2620",
      "productVersion" : "7.3.36",
      "networkId" : "1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "66ee4ef6-5067-4b20-b665-14ef3991d4d0",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "medium",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/66ee4ef6-5067-4b20-b665-14ef3991d4d0"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d281796f-58d3-4292-9d2c-119407bceeec"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6f38deec-3bd5-4dd7-842c-42c972e58481",
          "title" : "er-test-2620"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/66ee4ef6-5067-4b20-b665-14ef3991d4d0",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "72116459-91a1-4694-bfe9-8770546ed123",
      "hostId" : "72b779a7-cbdc-4700-9afc-152dc23b1e5d",
      "ownerIdentityId" : "c0873c4e-bb07-47c0-a5f2-17cde702eda3",
      "createdBy" : "c0873c4e-bb07-47c0-a5f2-17cde702eda3",
      "createdAt" : "2024-04-09T16:15:36.007703Z",
      "updatedAt" : "2024-04-09T16:15:36.007703Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2492",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2491",
      "productVersion" : "7.3.36",
      "networkId" : "38584c44-1221-465f-b396-413584f374fd",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/72b779a7-cbdc-4700-9afc-152dc23b1e5d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/38584c44-1221-465f-b396-413584f374fd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/72116459-91a1-4694-bfe9-8770546ed123",
          "title" : "er-test-2491"
        }
      }
    }, {
      "id" : "72ceb650-a372-42f9-91c2-a874240192e2",
      "hostId" : "0e05563d-b00b-4f42-b205-138660120fca",
      "ownerIdentityId" : "9cc151d0-38f5-49a5-8d34-8ed3b1572b19",
      "createdBy" : "9cc151d0-38f5-49a5-8d34-8ed3b1572b19",
      "createdAt" : "2024-04-09T16:15:37.952156Z",
      "updatedAt" : "2024-04-09T16:15:37.952156Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2627",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2626",
      "productVersion" : "7.3.36",
      "networkId" : "1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0e05563d-b00b-4f42-b205-138660120fca"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1cfc418b-3f5f-4c7c-88ac-53f43487e66e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/72ceb650-a372-42f9-91c2-a874240192e2",
          "title" : "er-test-2626"
        }
      }
    }, {
      "id" : "73892389-571c-4a79-872d-66e2a1c47ae4",
      "hostId" : "48405e60-6cdc-4c75-bd13-9825ce4f841f",
      "ownerIdentityId" : "656e0f6c-8425-4af4-9c68-5ed90534ba98",
      "createdBy" : "656e0f6c-8425-4af4-9c68-5ed90534ba98",
      "createdAt" : "2024-04-09T16:15:33.453017Z",
      "updatedAt" : "2024-04-09T16:15:33.453017Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2149",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2148",
      "productVersion" : "7.3.36",
      "networkId" : "41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/48405e60-6cdc-4c75-bd13-9825ce4f841f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/73892389-571c-4a79-872d-66e2a1c47ae4",
          "title" : "er-test-2148"
        }
      }
    }, {
      "id" : "74781fc3-b86c-4bb2-9df6-3264620c72cc",
      "hostId" : "646d5ecc-634f-4d1e-b2c3-5f893560939d",
      "ownerIdentityId" : "2dd38f0c-08fb-4523-8cd5-8e996f76b9fd",
      "createdBy" : "2dd38f0c-08fb-4523-8cd5-8e996f76b9fd",
      "createdAt" : "2024-04-09T16:15:34.153860Z",
      "updatedAt" : "2024-04-09T16:15:34.153860Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2365",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2364",
      "productVersion" : "7.3.36",
      "networkId" : "2d3f69f6-74b0-4260-b74d-478194eeac96",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/646d5ecc-634f-4d1e-b2c3-5f893560939d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d3f69f6-74b0-4260-b74d-478194eeac96",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/74781fc3-b86c-4bb2-9df6-3264620c72cc",
          "title" : "er-test-2364"
        }
      }
    }, {
      "id" : "755dec2a-59c2-41cb-805f-797e47b3d54e",
      "hostId" : "5f186ae9-3a8c-4ffa-844f-6d88245a64f3",
      "ownerIdentityId" : "5e88d80f-7a4d-4ef8-a47d-cb3fde75b5d7",
      "createdBy" : "5e88d80f-7a4d-4ef8-a47d-cb3fde75b5d7",
      "createdAt" : "2024-04-09T16:15:34.283375Z",
      "updatedAt" : "2024-04-09T16:15:34.283375Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2401",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2400",
      "productVersion" : "7.3.36",
      "networkId" : "e5e4ed18-5076-473b-9025-ce82cc3e7890",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5f186ae9-3a8c-4ffa-844f-6d88245a64f3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e5e4ed18-5076-473b-9025-ce82cc3e7890",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/755dec2a-59c2-41cb-805f-797e47b3d54e",
          "title" : "er-test-2400"
        }
      }
    }, {
      "id" : "7881e840-26bd-4587-8db3-e42b7affd4cc",
      "hostId" : "e461b28a-2f74-4fa0-8e5e-b1272b0986a7",
      "ownerIdentityId" : "bec92713-098d-4141-b236-f083a81ee0da",
      "createdBy" : "bec92713-098d-4141-b236-f083a81ee0da",
      "createdAt" : "2024-04-09T16:15:33.589260Z",
      "updatedAt" : "2024-04-09T16:15:33.589260Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2197",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2196",
      "productVersion" : "7.3.36",
      "networkId" : "013f0628-5b4d-4b93-8d20-95bebd2e1232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e461b28a-2f74-4fa0-8e5e-b1272b0986a7"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/013f0628-5b4d-4b93-8d20-95bebd2e1232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7881e840-26bd-4587-8db3-e42b7affd4cc",
          "title" : "er-test-2196"
        }
      }
    }, {
      "id" : "78ce886b-70f3-4433-a285-2ceb13c01d39",
      "hostId" : "3f26f379-d4b4-42a1-a755-19c62e405c7f",
      "ownerIdentityId" : "b6f653a4-93ab-4e59-b265-25f3039599fa",
      "createdBy" : "b6f653a4-93ab-4e59-b265-25f3039599fa",
      "createdAt" : "2024-04-09T16:15:38.126295Z",
      "updatedAt" : "2024-04-09T16:15:38.144758Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2685",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2684",
      "productVersion" : "7.3.36",
      "networkId" : "2fe582b6-23dd-43af-a404-153377d78f57",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "SUSPENDED",
      "softwareDeploymentStateId" : "6428c832-ccbf-4ae0-a29c-22136a9fc43d",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/6428c832-ccbf-4ae0-a29c-22136a9fc43d"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3f26f379-d4b4-42a1-a755-19c62e405c7f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2fe582b6-23dd-43af-a404-153377d78f57",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/78ce886b-70f3-4433-a285-2ceb13c01d39",
          "title" : "er-test-2684"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/6428c832-ccbf-4ae0-a29c-22136a9fc43d",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "793e02a9-ac92-4994-9bbc-810fcbb7360b",
      "hostId" : "65e933b7-d1d6-4ad5-a6bf-4d1b2defe885",
      "ownerIdentityId" : "3a883927-e61a-4f5a-9f76-ab59947ff910",
      "createdBy" : "3a883927-e61a-4f5a-9f76-ab59947ff910",
      "createdAt" : "2024-04-09T16:15:36.008554Z",
      "updatedAt" : "2024-04-09T16:15:36.008554Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2495",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2494",
      "productVersion" : "7.3.36",
      "networkId" : "38584c44-1221-465f-b396-413584f374fd",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/65e933b7-d1d6-4ad5-a6bf-4d1b2defe885"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/38584c44-1221-465f-b396-413584f374fd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/793e02a9-ac92-4994-9bbc-810fcbb7360b",
          "title" : "er-test-2494"
        }
      }
    }, {
      "id" : "7ad032be-54bd-4d41-86b4-28cc634213b2",
      "hostId" : "fd37ff98-cf27-48f9-92f2-11fb273f2976",
      "ownerIdentityId" : "780c865e-ea42-4ee8-8898-7d379eca119c",
      "createdBy" : "780c865e-ea42-4ee8-8898-7d379eca119c",
      "createdAt" : "2024-04-09T16:15:33.190076Z",
      "updatedAt" : "2024-04-09T16:15:33.190076Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2074",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2073",
      "productVersion" : "7.3.36",
      "networkId" : "f5f936ae-361b-40dd-99eb-424e086c5bfc",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fd37ff98-cf27-48f9-92f2-11fb273f2976"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f5f936ae-361b-40dd-99eb-424e086c5bfc",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7ad032be-54bd-4d41-86b4-28cc634213b2",
          "title" : "er-test-2073"
        }
      }
    }, {
      "id" : "7d8ae660-643e-4c17-8def-624abf0bfafc",
      "hostId" : "8cf042af-528a-496d-b932-a235eaa23d5d",
      "ownerIdentityId" : "c60e58de-0195-4f89-984c-0eadc82488a4",
      "createdBy" : "c60e58de-0195-4f89-984c-0eadc82488a4",
      "createdAt" : "2024-04-09T16:15:34.045587Z",
      "updatedAt" : "2024-04-09T16:15:34.045587Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2302",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2301",
      "productVersion" : "7.3.36",
      "networkId" : "c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8cf042af-528a-496d-b932-a235eaa23d5d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c4f6d9a8-9624-4bd3-8927-d91b9630bb5f",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7d8ae660-643e-4c17-8def-624abf0bfafc",
          "title" : "er-test-2301"
        }
      }
    }, {
      "id" : "7e8f683b-894f-47d5-bb31-383a03c57357",
      "hostId" : "cb2f1d9b-fb5e-483f-86ac-637f636b5e52",
      "ownerIdentityId" : "a5bb0c61-e60f-45f2-a496-88cb88cb34d7",
      "createdBy" : "a5bb0c61-e60f-45f2-a496-88cb88cb34d7",
      "createdAt" : "2024-04-09T16:15:34.336999Z",
      "updatedAt" : "2024-04-09T16:15:34.336999Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2432",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2431",
      "productVersion" : "7.3.36",
      "networkId" : "62e026b1-2371-4b7f-8ca6-a53caf47497c",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cb2f1d9b-fb5e-483f-86ac-637f636b5e52"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/62e026b1-2371-4b7f-8ca6-a53caf47497c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7e8f683b-894f-47d5-bb31-383a03c57357",
          "title" : "er-test-2431"
        }
      }
    }, {
      "id" : "7f608e31-c831-4c49-aeac-3a0519d33105",
      "hostId" : "11a74279-b0b4-4bbf-b120-fc306adf1643",
      "ownerIdentityId" : "25813fc1-adb1-475d-a40a-3ba75868e609",
      "createdBy" : "25813fc1-adb1-475d-a40a-3ba75868e609",
      "createdAt" : "2024-04-09T16:15:38.077529Z",
      "updatedAt" : "2024-04-09T16:15:38.077529Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2663",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2662",
      "productVersion" : "7.3.36",
      "networkId" : "96647e5d-fe64-4952-a647-3364a3953ea6",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/11a74279-b0b4-4bbf-b120-fc306adf1643"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/96647e5d-fe64-4952-a647-3364a3953ea6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7f608e31-c831-4c49-aeac-3a0519d33105",
          "title" : "er-test-2662"
        }
      }
    }, {
      "id" : "84e48e5d-1f9e-4e78-9f78-7bfd1a78614e",
      "hostId" : "39a37390-2e4c-4755-b412-49fb8197b5b8",
      "ownerIdentityId" : "61f03ee1-4c3a-4feb-9c33-8bfd88c9fa6b",
      "createdBy" : "61f03ee1-4c3a-4feb-9c33-8bfd88c9fa6b",
      "createdAt" : "2024-04-09T16:15:38.352744Z",
      "updatedAt" : "2024-04-09T16:15:38.352744Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2748",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2747",
      "productVersion" : "7.3.36",
      "networkId" : "5336ba3e-81fe-47aa-878d-bb197595431b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/39a37390-2e4c-4755-b412-49fb8197b5b8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/5336ba3e-81fe-47aa-878d-bb197595431b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84e48e5d-1f9e-4e78-9f78-7bfd1a78614e",
          "title" : "er-test-2747"
        }
      }
    }, {
      "id" : "869c2287-6a06-4201-a61a-a4791109d8a6",
      "hostId" : "b313ebf4-1ac9-4bd2-90f5-70efd25f1750",
      "ownerIdentityId" : "b766a967-0bf6-4827-84a6-0bd9cf326b8d",
      "createdBy" : "b766a967-0bf6-4827-84a6-0bd9cf326b8d",
      "createdAt" : "2024-04-09T16:15:34.383488Z",
      "updatedAt" : "2024-04-09T16:15:34.383488Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2460",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-ziti-features-2459",
      "productVersion" : "7.3.4",
      "networkId" : "29b572f9-4ac8-4472-ae58-9bae89e002bf",
      "jwt" : null,
      "linkListener" : true,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b313ebf4-1ac9-4bd2-90f5-70efd25f1750"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/29b572f9-4ac8-4472-ae58-9bae89e002bf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/869c2287-6a06-4201-a61a-a4791109d8a6",
          "title" : "er-ziti-features-2459"
        }
      }
    }, {
      "id" : "86f2b585-ef29-48b6-a0ec-763aaed45c2a",
      "hostId" : "d964c979-a714-4f94-8e4f-5cd92f5adbe8",
      "ownerIdentityId" : "370130a5-dff8-4a0d-a3e5-3c96e42088ab",
      "createdBy" : "370130a5-dff8-4a0d-a3e5-3c96e42088ab",
      "createdAt" : "2024-04-09T16:15:38.031274Z",
      "updatedAt" : "2024-04-09T16:15:38.044003Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "zWkRgsmNYK070AQRQt2E-",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "Test edge router 1712679338",
      "productVersion" : "7.3.36",
      "networkId" : "800d734d-e97f-4a39-847b-8e469e114ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONING",
      "softwareDeploymentStateId" : "f0776c12-cb59-47f1-9546-0fa29daa653f",
      "provider" : "CUSTOMER",
      "region" : null,
      "hostSize" : null,
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f0776c12-cb59-47f1-9546-0fa29daa653f"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d964c979-a714-4f94-8e4f-5cd92f5adbe8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/800d734d-e97f-4a39-847b-8e469e114ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/86f2b585-ef29-48b6-a0ec-763aaed45c2a",
          "title" : "Test edge router 1712679338"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f0776c12-cb59-47f1-9546-0fa29daa653f",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "874c4db2-bae1-47ab-a58f-3ea0ce6a6265",
      "hostId" : "50e1a29f-1833-4724-9f4d-21d0614332d3",
      "ownerIdentityId" : "3d31bf96-e91d-48f5-bf95-615a6e11ca94",
      "createdBy" : "3d31bf96-e91d-48f5-bf95-615a6e11ca94",
      "createdAt" : "2024-04-09T16:15:37.785028Z",
      "updatedAt" : "2024-04-09T16:15:37.785028Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2576",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2575",
      "productVersion" : "7.3.36",
      "networkId" : "8c766e18-ae38-46ee-b2b6-b0c58b08c232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/50e1a29f-1833-4724-9f4d-21d0614332d3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c766e18-ae38-46ee-b2b6-b0c58b08c232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/874c4db2-bae1-47ab-a58f-3ea0ce6a6265",
          "title" : "er-test-2575"
        }
      }
    }, {
      "id" : "87b35790-44e3-4e42-b4e5-037518bf2838",
      "hostId" : "2ee21fab-1aa4-4e66-a301-f870902a4f41",
      "ownerIdentityId" : "ed523196-a342-4ef1-9803-313dc743c7c0",
      "createdBy" : "ed523196-a342-4ef1-9803-313dc743c7c0",
      "createdAt" : "2024-04-09T16:15:38.128975Z",
      "updatedAt" : "2024-04-09T16:15:38.128975Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2694",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2693",
      "productVersion" : "7.3.36",
      "networkId" : "2fe582b6-23dd-43af-a404-153377d78f57",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2ee21fab-1aa4-4e66-a301-f870902a4f41"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2fe582b6-23dd-43af-a404-153377d78f57",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/87b35790-44e3-4e42-b4e5-037518bf2838",
          "title" : "er-test-2693"
        }
      }
    }, {
      "id" : "87b5114b-0436-4479-bd14-b7acb90412be",
      "hostId" : "08da1c95-5b05-4b82-8fc5-c2c23dde7a7e",
      "ownerIdentityId" : "9a05d432-b93f-477e-b59f-11517e396df4",
      "createdBy" : "9a05d432-b93f-477e-b59f-11517e396df4",
      "createdAt" : "2024-04-09T16:15:38.011573Z",
      "updatedAt" : "2024-04-09T16:15:38.011573Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2642",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2641",
      "productVersion" : "7.3.36",
      "networkId" : "800d734d-e97f-4a39-847b-8e469e114ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/08da1c95-5b05-4b82-8fc5-c2c23dde7a7e"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/800d734d-e97f-4a39-847b-8e469e114ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/87b5114b-0436-4479-bd14-b7acb90412be",
          "title" : "er-test-2641"
        }
      }
    }, {
      "id" : "897d58f8-e4e3-4483-8487-b6dc7daa3f03",
      "hostId" : "e0f92c85-e55c-4034-aa7a-304e359f631f",
      "ownerIdentityId" : "fff1b704-d2cd-445e-b31e-763eae3cdc0d",
      "createdBy" : "fff1b704-d2cd-445e-b31e-763eae3cdc0d",
      "createdAt" : "2024-04-09T16:15:38.351315Z",
      "updatedAt" : "2024-04-09T16:15:38.351315Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2742",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2741",
      "productVersion" : "7.3.36",
      "networkId" : "5336ba3e-81fe-47aa-878d-bb197595431b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e0f92c85-e55c-4034-aa7a-304e359f631f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/5336ba3e-81fe-47aa-878d-bb197595431b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/897d58f8-e4e3-4483-8487-b6dc7daa3f03",
          "title" : "er-test-2741"
        }
      }
    }, {
      "id" : "8d27faa3-cb6c-41f7-ab3d-08e9f804e835",
      "hostId" : "a0519625-6e2a-48a1-94c9-ce0ef4c017fc",
      "ownerIdentityId" : "5f2d06e6-1636-4a7e-8d59-9684106cc98d",
      "createdBy" : "5f2d06e6-1636-4a7e-8d59-9684106cc98d",
      "createdAt" : "2024-04-09T16:15:38.220060Z",
      "updatedAt" : "2024-04-09T16:15:38.220060Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2712",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2711",
      "productVersion" : "7.3.36",
      "networkId" : "787d0693-403b-4115-9862-470476a91b90",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a0519625-6e2a-48a1-94c9-ce0ef4c017fc"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/787d0693-403b-4115-9862-470476a91b90",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8d27faa3-cb6c-41f7-ab3d-08e9f804e835",
          "title" : "er-test-2711"
        }
      }
    }, {
      "id" : "9167481b-f488-4bdd-801a-40e3f76661ce",
      "hostId" : "e2f451c3-8fad-428d-98d0-1f97a43951d3",
      "ownerIdentityId" : "45daa3d7-1747-4ac3-8128-628fb007cb0e",
      "createdBy" : "45daa3d7-1747-4ac3-8128-628fb007cb0e",
      "createdAt" : "2024-04-09T16:15:36.006137Z",
      "updatedAt" : "2024-04-09T16:15:36.009633Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2486",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2485",
      "productVersion" : "7.3.36",
      "networkId" : "38584c44-1221-465f-b396-413584f374fd",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "8dbfea8d-1cc9-4e06-97b0-6986a6e5ccaa",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8dbfea8d-1cc9-4e06-97b0-6986a6e5ccaa"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e2f451c3-8fad-428d-98d0-1f97a43951d3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/38584c44-1221-465f-b396-413584f374fd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9167481b-f488-4bdd-801a-40e3f76661ce",
          "title" : "er-test-2485"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8dbfea8d-1cc9-4e06-97b0-6986a6e5ccaa",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "944bf7ff-7d18-4959-a58e-6421569d4343",
      "hostId" : "995e7d54-f862-462f-afe1-52615cfefedb",
      "ownerIdentityId" : "6922cfc3-2ba5-497b-8f2d-00bf23f631f6",
      "createdBy" : "6922cfc3-2ba5-497b-8f2d-00bf23f631f6",
      "createdAt" : "2024-04-09T16:15:38.308403Z",
      "updatedAt" : "2024-04-09T16:15:38.308403Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2727",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2726",
      "productVersion" : "7.3.36",
      "networkId" : "aaed2613-d33c-42fe-8135-827b298a0d9b",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/995e7d54-f862-462f-afe1-52615cfefedb"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/aaed2613-d33c-42fe-8135-827b298a0d9b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/944bf7ff-7d18-4959-a58e-6421569d4343",
          "title" : "er-test-2726"
        }
      }
    }, {
      "id" : "94a69341-6fc1-45d9-b285-bef3ebf4ffa6",
      "hostId" : "f382f0ef-a3a2-42bb-a412-051348a674af",
      "ownerIdentityId" : "9fab2fed-8ac2-4be1-a7da-6793139afc71",
      "createdBy" : "9fab2fed-8ac2-4be1-a7da-6793139afc71",
      "createdAt" : "2024-04-09T16:15:37.827098Z",
      "updatedAt" : "2024-04-09T16:15:37.827098Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2591",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2590",
      "productVersion" : "7.3.36",
      "networkId" : "7aade141-ebb3-4b66-b234-e994b3870775",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f382f0ef-a3a2-42bb-a412-051348a674af"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7aade141-ebb3-4b66-b234-e994b3870775",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/94a69341-6fc1-45d9-b285-bef3ebf4ffa6",
          "title" : "er-test-2590"
        }
      }
    }, {
      "id" : "95519a1f-51d1-4eac-8ffa-d1e5abcd1037",
      "hostId" : "af6b3a29-6fcc-4e39-a5e8-5798e840db7d",
      "ownerIdentityId" : "41229550-d633-45be-8ae0-e2a3da52a949",
      "createdBy" : "41229550-d633-45be-8ae0-e2a3da52a949",
      "createdAt" : "2024-04-09T16:15:33.953880Z",
      "updatedAt" : "2024-04-09T16:15:33.953880Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2269",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2268",
      "productVersion" : "7.3.36",
      "networkId" : "6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/af6b3a29-6fcc-4e39-a5e8-5798e840db7d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6fa8e7dc-41da-4750-a2a4-c87f12b4fb70",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/95519a1f-51d1-4eac-8ffa-d1e5abcd1037",
          "title" : "er-test-2268"
        }
      }
    }, {
      "id" : "95a4b019-5d62-45d0-a9bf-bd7d5831d4f0",
      "hostId" : "bb0afa2e-943a-4150-926f-901bc7415497",
      "ownerIdentityId" : "0214258e-a16a-40fc-a59f-425f4a2efbdc",
      "createdBy" : "0214258e-a16a-40fc-a59f-425f4a2efbdc",
      "createdAt" : "2024-04-09T16:15:37.873781Z",
      "updatedAt" : "2024-04-09T16:15:37.877318Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2603",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2602",
      "productVersion" : "7.3.36",
      "networkId" : "0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "5b946a2b-2f3a-4103-9ab8-2e96cdc721a6",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/5b946a2b-2f3a-4103-9ab8-2e96cdc721a6"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bb0afa2e-943a-4150-926f-901bc7415497"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/95a4b019-5d62-45d0-a9bf-bd7d5831d4f0",
          "title" : "er-test-2602"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/5b946a2b-2f3a-4103-9ab8-2e96cdc721a6",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "95cc308f-0dfd-47cb-b0ca-0f5f14a623ca",
      "hostId" : "b538bc34-346a-49fb-8803-62134579bde8",
      "ownerIdentityId" : "8c5e11af-cb70-47a8-abc6-77fb2f239461",
      "createdBy" : "8c5e11af-cb70-47a8-abc6-77fb2f239461",
      "createdAt" : "2024-04-09T16:15:37.710937Z",
      "updatedAt" : "2024-04-09T16:15:37.710937Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2540",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2539",
      "productVersion" : "7.3.36",
      "networkId" : "6ae9a460-60d1-4cfa-9b81-cecb9108317e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b538bc34-346a-49fb-8803-62134579bde8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6ae9a460-60d1-4cfa-9b81-cecb9108317e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/95cc308f-0dfd-47cb-b0ca-0f5f14a623ca",
          "title" : "er-test-2539"
        }
      }
    }, {
      "id" : "9623275b-256e-419e-93f4-4d49e1530ea8",
      "hostId" : "ff7c9ebe-56c2-4a53-8113-a7de9461ab64",
      "ownerIdentityId" : "de622f4c-bd7b-4bb7-b0d1-d5373cf2df4f",
      "createdBy" : "de622f4c-bd7b-4bb7-b0d1-d5373cf2df4f",
      "createdAt" : "2024-04-09T16:15:34.419579Z",
      "updatedAt" : "2024-04-09T16:15:34.419579Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2474",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2473",
      "productVersion" : "7.3.36",
      "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ff7c9ebe-56c2-4a53-8113-a7de9461ab64"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9623275b-256e-419e-93f4-4d49e1530ea8",
          "title" : "er-test-2473"
        }
      }
    }, {
      "id" : "96f697ba-32ab-4012-ab8b-018f733282ab",
      "hostId" : "7e466a49-187b-43e5-a260-85e30aa66f52",
      "ownerIdentityId" : "3fdabea1-6e6e-4556-8070-b4257843820a",
      "createdBy" : "3fdabea1-6e6e-4556-8070-b4257843820a",
      "createdAt" : "2024-04-09T16:15:34.418838Z",
      "updatedAt" : "2024-04-09T16:15:34.418838Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2471",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2470",
      "productVersion" : "7.3.36",
      "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7e466a49-187b-43e5-a260-85e30aa66f52"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/96f697ba-32ab-4012-ab8b-018f733282ab",
          "title" : "er-test-2470"
        }
      }
    }, {
      "id" : "97b8b718-6000-42ce-998b-da7ece941040",
      "hostId" : "eb0819aa-f72a-41c5-afc8-69c9b0c81341",
      "ownerIdentityId" : "0fd5a5a3-6377-4bc5-870d-f066dfec7ca9",
      "createdBy" : "0fd5a5a3-6377-4bc5-870d-f066dfec7ca9",
      "createdAt" : "2024-04-09T16:15:33.364554Z",
      "updatedAt" : "2024-04-09T16:15:33.367597Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2104",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2103",
      "productVersion" : "7.3.36",
      "networkId" : "032a825a-e7e2-47a2-bbe7-1acb7df590eb",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "193c712a-1151-4ffa-9c99-2450be2aace0",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/193c712a-1151-4ffa-9c99-2450be2aace0"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/eb0819aa-f72a-41c5-afc8-69c9b0c81341"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/032a825a-e7e2-47a2-bbe7-1acb7df590eb",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/97b8b718-6000-42ce-998b-da7ece941040",
          "title" : "er-test-2103"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/193c712a-1151-4ffa-9c99-2450be2aace0",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "9a38c010-5d58-43ce-8944-01ce01837a5a",
      "hostId" : "51b7c4a3-95d9-46bb-8db6-367333a2f54d",
      "ownerIdentityId" : "f07336c5-ae3b-4cdd-a4b5-97ae9ed7a4b5",
      "createdBy" : "f07336c5-ae3b-4cdd-a4b5-97ae9ed7a4b5",
      "createdAt" : "2024-04-09T16:15:33.852492Z",
      "updatedAt" : "2024-04-09T16:15:33.852492Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2248",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2247",
      "productVersion" : "7.3.36",
      "networkId" : "35aa5161-98df-4ebb-a015-f069da5474fe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/51b7c4a3-95d9-46bb-8db6-367333a2f54d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/35aa5161-98df-4ebb-a015-f069da5474fe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9a38c010-5d58-43ce-8944-01ce01837a5a",
          "title" : "er-test-2247"
        }
      }
    }, {
      "id" : "9a3c16c8-0194-4b29-9b93-cb053f3891a0",
      "hostId" : "4c643234-0786-4fa9-b351-db7fe05ccde4",
      "ownerIdentityId" : "50645859-419f-4a7d-ae87-d834df5564c7",
      "createdBy" : "50645859-419f-4a7d-ae87-d834df5564c7",
      "createdAt" : "2024-04-09T16:15:34.379205Z",
      "updatedAt" : "2024-04-09T16:15:34.379205Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2450",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2449",
      "productVersion" : "7.3.36",
      "networkId" : "daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4c643234-0786-4fa9-b351-db7fe05ccde4"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/daf1a1a1-a18c-4ee6-aa96-5616e386dfaf",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9a3c16c8-0194-4b29-9b93-cb053f3891a0",
          "title" : "er-test-2449"
        }
      }
    }, {
      "id" : "9edfdbd2-c5f2-43e8-a437-f5ec3beeff72",
      "hostId" : "2420be48-2697-47b6-82d9-d0156f1dd49e",
      "ownerIdentityId" : "62f110be-6642-40f0-865a-c152d8ee1dc8",
      "createdBy" : "62f110be-6642-40f0-865a-c152d8ee1dc8",
      "createdAt" : "2024-04-09T16:15:34.086932Z",
      "updatedAt" : "2024-04-09T16:15:34.086932Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2326",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2325",
      "productVersion" : "7.3.36",
      "networkId" : "7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2420be48-2697-47b6-82d9-d0156f1dd49e"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9edfdbd2-c5f2-43e8-a437-f5ec3beeff72",
          "title" : "er-test-2325"
        }
      }
    }, {
      "id" : "a077f59b-8245-4ad5-bbab-5aae3490d1e1",
      "hostId" : "3d701fe3-d32d-431b-a46f-53ef5eb38f5b",
      "ownerIdentityId" : "70e3d390-7ab1-4d39-91a6-8912a5cf8c43",
      "createdBy" : "70e3d390-7ab1-4d39-91a6-8912a5cf8c43",
      "createdAt" : "2024-04-09T16:15:33.399879Z",
      "updatedAt" : "2024-04-09T16:15:33.399879Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2125",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2124",
      "productVersion" : "7.3.36",
      "networkId" : "7a0c316e-b9de-47ed-8b29-13f65537f248",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3d701fe3-d32d-431b-a46f-53ef5eb38f5b"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a0c316e-b9de-47ed-8b29-13f65537f248",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a077f59b-8245-4ad5-bbab-5aae3490d1e1",
          "title" : "er-test-2124"
        }
      }
    }, {
      "id" : "a272d309-0768-4c6d-b245-66eb43c9b572",
      "hostId" : "50462b38-8714-4c92-9e64-2584291ba833",
      "ownerIdentityId" : "c594026e-ade9-4050-a9bd-6ae6323d818f",
      "createdBy" : "c594026e-ade9-4050-a9bd-6ae6323d818f",
      "createdAt" : "2024-04-09T16:15:34.248090Z",
      "updatedAt" : "2024-04-09T16:15:34.253224Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2377",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2376",
      "productVersion" : "7.3.36",
      "networkId" : "ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "8e4683a8-919c-4be6-8342-a4fb0e61cc86",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8e4683a8-919c-4be6-8342-a4fb0e61cc86"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/50462b38-8714-4c92-9e64-2584291ba833"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee63d8c4-8491-4e58-8a38-827c5c2e29c2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a272d309-0768-4c6d-b245-66eb43c9b572",
          "title" : "er-test-2376"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8e4683a8-919c-4be6-8342-a4fb0e61cc86",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "a54c9281-9928-4e8f-a361-a379dbb3e11e",
      "hostId" : "303c72fe-fb2e-42a9-9ddf-65a494d95748",
      "ownerIdentityId" : "719ab7aa-f973-43b3-9f72-2d6a3703b59b",
      "createdBy" : "719ab7aa-f973-43b3-9f72-2d6a3703b59b",
      "createdAt" : "2024-04-09T16:15:37.707585Z",
      "updatedAt" : "2024-04-09T16:15:37.712321Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2531",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2530",
      "productVersion" : "7.3.36",
      "networkId" : "6ae9a460-60d1-4cfa-9b81-cecb9108317e",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "029f0cec-8b85-4589-866a-d52db56a75e4",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/029f0cec-8b85-4589-866a-d52db56a75e4"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/303c72fe-fb2e-42a9-9ddf-65a494d95748"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6ae9a460-60d1-4cfa-9b81-cecb9108317e",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a54c9281-9928-4e8f-a361-a379dbb3e11e",
          "title" : "er-test-2530"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/029f0cec-8b85-4589-866a-d52db56a75e4",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "a5debc6a-66a1-4c6c-a702-c90e810a4dac",
      "hostId" : "033891fe-702e-49b8-8563-6a3965db1cf0",
      "ownerIdentityId" : "6638d1eb-d874-4f58-a6f4-46203941a06b",
      "createdBy" : "6638d1eb-d874-4f58-a6f4-46203941a06b",
      "createdAt" : "2024-04-09T16:15:34.153049Z",
      "updatedAt" : "2024-04-09T16:15:34.153049Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2362",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2361",
      "productVersion" : "7.3.36",
      "networkId" : "2d3f69f6-74b0-4260-b74d-478194eeac96",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/033891fe-702e-49b8-8563-6a3965db1cf0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d3f69f6-74b0-4260-b74d-478194eeac96",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a5debc6a-66a1-4c6c-a702-c90e810a4dac",
          "title" : "er-test-2361"
        }
      }
    }, {
      "id" : "a6362044-49a4-4866-b8a7-5b6eb885e964",
      "hostId" : "00fa0c90-4550-4250-a3e0-32108b726887",
      "ownerIdentityId" : "b7531930-c6d3-4026-a904-915bd79e3195",
      "createdBy" : "b7531930-c6d3-4026-a904-915bd79e3195",
      "createdAt" : "2024-04-09T16:15:38.078312Z",
      "updatedAt" : "2024-04-09T16:15:38.078312Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2666",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2665",
      "productVersion" : "7.3.36",
      "networkId" : "96647e5d-fe64-4952-a647-3364a3953ea6",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/00fa0c90-4550-4250-a3e0-32108b726887"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/96647e5d-fe64-4952-a647-3364a3953ea6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a6362044-49a4-4866-b8a7-5b6eb885e964",
          "title" : "er-test-2665"
        }
      }
    }, {
      "id" : "a6a2474d-4e3c-4103-aa0a-3395af9e106b",
      "hostId" : "b608c123-7cc7-4a4b-a0ac-f1dd2e6737fb",
      "ownerIdentityId" : "46ca83dc-d8ba-42fa-800b-c12f51d2fd88",
      "createdBy" : "46ca83dc-d8ba-42fa-800b-c12f51d2fd88",
      "createdAt" : "2024-04-09T16:15:38.307678Z",
      "updatedAt" : "2024-04-09T16:15:38.307678Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2724",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2723",
      "productVersion" : "7.3.36",
      "networkId" : "aaed2613-d33c-42fe-8135-827b298a0d9b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b608c123-7cc7-4a4b-a0ac-f1dd2e6737fb"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/aaed2613-d33c-42fe-8135-827b298a0d9b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a6a2474d-4e3c-4103-aa0a-3395af9e106b",
          "title" : "er-test-2723"
        }
      }
    }, {
      "id" : "a6d5d018-6eef-4beb-aeba-1914c250360a",
      "hostId" : "0f621164-9640-4647-a792-4ec064069012",
      "ownerIdentityId" : "d0429407-ac9b-4b6c-9110-a9d2fe019e1a",
      "createdBy" : "d0429407-ac9b-4b6c-9110-a9d2fe019e1a",
      "createdAt" : "2024-04-09T16:15:37.782856Z",
      "updatedAt" : "2024-04-09T16:15:37.782856Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2570",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2569",
      "productVersion" : "7.3.36",
      "networkId" : "8c766e18-ae38-46ee-b2b6-b0c58b08c232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0f621164-9640-4647-a792-4ec064069012"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c766e18-ae38-46ee-b2b6-b0c58b08c232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a6d5d018-6eef-4beb-aeba-1914c250360a",
          "title" : "er-test-2569"
        }
      }
    }, {
      "id" : "a7237aa0-cd6b-496e-8e10-d56f9cc27f85",
      "hostId" : "f0d8d4d4-3a33-413a-af19-a94608dba70f",
      "ownerIdentityId" : "7e99a795-78bc-447e-ba8e-4bd0c8548880",
      "createdBy" : "7e99a795-78bc-447e-ba8e-4bd0c8548880",
      "createdAt" : "2024-04-09T16:15:34.115964Z",
      "updatedAt" : "2024-04-09T16:15:34.118896Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2341",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2340",
      "productVersion" : "7.3.36",
      "networkId" : "4b750e3a-75c4-4a15-ae2b-66cd49447675",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "73574a69-edb9-4079-a42f-c667def2effc",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/73574a69-edb9-4079-a42f-c667def2effc"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f0d8d4d4-3a33-413a-af19-a94608dba70f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4b750e3a-75c4-4a15-ae2b-66cd49447675",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a7237aa0-cd6b-496e-8e10-d56f9cc27f85",
          "title" : "er-test-2340"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/73574a69-edb9-4079-a42f-c667def2effc",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "a7390c1f-5a15-402d-9ee0-3b7bb96e22cc",
      "hostId" : "4423a919-cb8b-4570-aca2-bced3ad3895f",
      "ownerIdentityId" : "c498e1c1-6a2a-4568-8639-7571a36ce7f0",
      "createdBy" : "c498e1c1-6a2a-4568-8639-7571a36ce7f0",
      "createdAt" : "2024-04-09T16:15:34.281480Z",
      "updatedAt" : "2024-04-09T16:15:34.285240Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2395",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2394",
      "productVersion" : "7.3.36",
      "networkId" : "e5e4ed18-5076-473b-9025-ce82cc3e7890",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "4d628652-552e-4160-8c71-dfa4673ab5e3",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4d628652-552e-4160-8c71-dfa4673ab5e3"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4423a919-cb8b-4570-aca2-bced3ad3895f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e5e4ed18-5076-473b-9025-ce82cc3e7890",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a7390c1f-5a15-402d-9ee0-3b7bb96e22cc",
          "title" : "er-test-2394"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4d628652-552e-4160-8c71-dfa4673ab5e3",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "add2d68e-eedc-4808-bedb-286509a519ca",
      "hostId" : "ae4bdbac-b411-4b32-a777-2b8ab4700b8b",
      "ownerIdentityId" : "adef37dd-d3d7-4522-99ae-b34e97496c6f",
      "createdBy" : "adef37dd-d3d7-4522-99ae-b34e97496c6f",
      "createdAt" : "2024-04-09T16:15:34.282419Z",
      "updatedAt" : "2024-04-09T16:15:34.282419Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2398",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2397",
      "productVersion" : "7.3.36",
      "networkId" : "e5e4ed18-5076-473b-9025-ce82cc3e7890",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ae4bdbac-b411-4b32-a777-2b8ab4700b8b"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e5e4ed18-5076-473b-9025-ce82cc3e7890",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/add2d68e-eedc-4808-bedb-286509a519ca",
          "title" : "er-test-2397"
        }
      }
    }, {
      "id" : "aec2cc56-ea5e-4847-bbab-def951ffdf10",
      "hostId" : "96c38c86-5a23-46f3-8193-bf67a6bab1c8",
      "ownerIdentityId" : "a58b064e-9b41-4bb5-973f-7dd89533f92b",
      "createdBy" : "a58b064e-9b41-4bb5-973f-7dd89533f92b",
      "createdAt" : "2024-04-09T16:15:34.335312Z",
      "updatedAt" : "2024-04-09T16:15:34.335312Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2426",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2425",
      "productVersion" : "7.3.36",
      "networkId" : "62e026b1-2371-4b7f-8ca6-a53caf47497c",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/96c38c86-5a23-46f3-8193-bf67a6bab1c8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/62e026b1-2371-4b7f-8ca6-a53caf47497c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/aec2cc56-ea5e-4847-bbab-def951ffdf10",
          "title" : "er-test-2425"
        }
      }
    }, {
      "id" : "afdacdc8-94f6-4c95-8aaf-a67deef8a4b7",
      "hostId" : "2850796e-ecb0-4ffa-9503-3fd0acfa5ab1",
      "ownerIdentityId" : "24bf6db9-f2f4-455f-8103-6eb66c4e4df0",
      "createdBy" : "24bf6db9-f2f4-455f-8103-6eb66c4e4df0",
      "createdAt" : "2024-04-09T16:15:38.352064Z",
      "updatedAt" : "2024-04-09T16:15:38.352064Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2745",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2744",
      "productVersion" : "7.3.36",
      "networkId" : "5336ba3e-81fe-47aa-878d-bb197595431b",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2850796e-ecb0-4ffa-9503-3fd0acfa5ab1"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/5336ba3e-81fe-47aa-878d-bb197595431b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/afdacdc8-94f6-4c95-8aaf-a67deef8a4b7",
          "title" : "er-test-2744"
        }
      }
    }, {
      "id" : "afe2f615-ac18-4e76-83ba-14c9d28975ed",
      "hostId" : "75035ee6-67c0-44a9-b269-1e4040552f89",
      "ownerIdentityId" : "97c16b7b-cb69-45e6-bd70-c39f8ca9c173",
      "createdBy" : "97c16b7b-cb69-45e6-bd70-c39f8ca9c173",
      "createdAt" : "2024-04-09T16:15:38.217622Z",
      "updatedAt" : "2024-04-09T16:15:38.264935Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2703",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "Updated name",
      "productVersion" : "7.3.36",
      "networkId" : "787d0693-403b-4115-9862-470476a91b90",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : true,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "39870032-ab92-40e0-80de-3d02d3af051f",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/39870032-ab92-40e0-80de-3d02d3af051f"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/75035ee6-67c0-44a9-b269-1e4040552f89"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/787d0693-403b-4115-9862-470476a91b90",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/afe2f615-ac18-4e76-83ba-14c9d28975ed",
          "title" : "Updated name"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/39870032-ab92-40e0-80de-3d02d3af051f",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "b2237fdf-e4ec-4214-be5a-59956c700dbc",
      "hostId" : "711c43db-c463-4a29-871d-ee467f707445",
      "ownerIdentityId" : "9254972b-7bbd-430d-8ee5-0db4a394ae39",
      "createdBy" : "9254972b-7bbd-430d-8ee5-0db4a394ae39",
      "createdAt" : "2024-04-09T16:15:37.748183Z",
      "updatedAt" : "2024-04-09T16:15:37.748183Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2558",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2557",
      "productVersion" : "7.3.36",
      "networkId" : "8e87f965-07c4-4b1e-b300-12cf670e4708",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/711c43db-c463-4a29-871d-ee467f707445"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8e87f965-07c4-4b1e-b300-12cf670e4708",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b2237fdf-e4ec-4214-be5a-59956c700dbc",
          "title" : "er-test-2557"
        }
      }
    }, {
      "id" : "b284cb81-d0df-4a6f-834e-6dae022c390d",
      "hostId" : "bbf9525f-e369-4c55-b6fb-700c1da28398",
      "ownerIdentityId" : "07cde66a-8528-4d29-b842-80862eebe9b2",
      "createdBy" : "07cde66a-8528-4d29-b842-80862eebe9b2",
      "createdAt" : "2024-04-09T16:15:38.128096Z",
      "updatedAt" : "2024-04-09T16:15:38.128096Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2691",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2690",
      "productVersion" : "7.3.36",
      "networkId" : "2fe582b6-23dd-43af-a404-153377d78f57",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bbf9525f-e369-4c55-b6fb-700c1da28398"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2fe582b6-23dd-43af-a404-153377d78f57",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b284cb81-d0df-4a6f-834e-6dae022c390d",
          "title" : "er-test-2690"
        }
      }
    }, {
      "id" : "b44a7768-b2b8-44af-8de0-a4830ccad34a",
      "hostId" : "7515e170-2e44-43c3-be72-28bc5da5822c",
      "ownerIdentityId" : "70e76fb7-c9d1-4bd2-939f-ed44fae468d1",
      "createdBy" : "70e76fb7-c9d1-4bd2-939f-ed44fae468d1",
      "createdAt" : "2024-04-09T16:15:33.365960Z",
      "updatedAt" : "2024-04-09T16:15:33.365960Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2110",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2109",
      "productVersion" : "7.3.36",
      "networkId" : "032a825a-e7e2-47a2-bbe7-1acb7df590eb",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7515e170-2e44-43c3-be72-28bc5da5822c"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/032a825a-e7e2-47a2-bbe7-1acb7df590eb",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b44a7768-b2b8-44af-8de0-a4830ccad34a",
          "title" : "er-test-2109"
        }
      }
    }, {
      "id" : "b4d8bf68-57ba-44a4-a832-105e3419ca19",
      "hostId" : "24054776-1d3e-4035-8792-2deaf99c5316",
      "ownerIdentityId" : "0064d56f-4d05-497f-85e5-ebcb99437f94",
      "createdBy" : "0064d56f-4d05-497f-85e5-ebcb99437f94",
      "createdAt" : "2024-04-09T16:15:33.190925Z",
      "updatedAt" : "2024-04-09T16:15:33.190925Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2077",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2076",
      "productVersion" : "7.3.36",
      "networkId" : "f5f936ae-361b-40dd-99eb-424e086c5bfc",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/24054776-1d3e-4035-8792-2deaf99c5316"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f5f936ae-361b-40dd-99eb-424e086c5bfc",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b4d8bf68-57ba-44a4-a832-105e3419ca19",
          "title" : "er-test-2076"
        }
      }
    }, {
      "id" : "b7664bf4-933e-4e07-a7c4-8ed0dc1f151b",
      "hostId" : "66b3c1b0-760b-457d-b161-fa7f14862c60",
      "ownerIdentityId" : "55fb6a67-ff9e-4ce0-aa99-a9c97ddd2607",
      "createdBy" : "55fb6a67-ff9e-4ce0-aa99-a9c97ddd2607",
      "createdAt" : "2024-04-09T16:15:33.554664Z",
      "updatedAt" : "2024-04-09T16:15:33.558706Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2176",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2175",
      "productVersion" : "7.3.36",
      "networkId" : "1c4f631c-f11a-4283-a008-ba38959c0783",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "589f7bd1-dba6-4d4a-87a4-a5507fc453db",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/589f7bd1-dba6-4d4a-87a4-a5507fc453db"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/66b3c1b0-760b-457d-b161-fa7f14862c60"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c4f631c-f11a-4283-a008-ba38959c0783",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b7664bf4-933e-4e07-a7c4-8ed0dc1f151b",
          "title" : "er-test-2175"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/589f7bd1-dba6-4d4a-87a4-a5507fc453db",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "bd0a58f8-868f-448f-ba74-c63ae60e4ee3",
      "hostId" : "a7c66e48-0cbc-4aae-ad72-51f9559e0373",
      "ownerIdentityId" : "6edfbd3d-b3be-4765-91b3-3d70b8d6c74b",
      "createdBy" : "6edfbd3d-b3be-4765-91b3-3d70b8d6c74b",
      "createdAt" : "2024-04-09T16:15:33.557261Z",
      "updatedAt" : "2024-04-09T16:15:33.557261Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2185",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2184",
      "productVersion" : "7.3.36",
      "networkId" : "1c4f631c-f11a-4283-a008-ba38959c0783",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a7c66e48-0cbc-4aae-ad72-51f9559e0373"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c4f631c-f11a-4283-a008-ba38959c0783",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bd0a58f8-868f-448f-ba74-c63ae60e4ee3",
          "title" : "er-test-2184"
        }
      }
    }, {
      "id" : "c07c3c7b-dea2-4409-85f6-bab95a965861",
      "hostId" : null,
      "ownerIdentityId" : "095b48f4-46c1-437e-a530-8774ea3ccef3",
      "createdBy" : "095b48f4-46c1-437e-a530-8774ea3ccef3",
      "createdAt" : "2024-04-09T16:15:34.299014Z",
      "updatedAt" : "2024-04-09T16:15:34.305185Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : null,
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "edgerouter-2414",
      "productVersion" : "7.3.69",
      "networkId" : "553b6289-52a4-4f71-a2d4-ece2ffb8a6eb",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "ERROR",
      "softwareDeploymentStateId" : "f0038590-8ae4-4e9d-ac76-d3cedb9124c9",
      "provider" : null,
      "region" : null,
      "hostSize" : null,
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f0038590-8ae4-4e9d-ac76-d3cedb9124c9"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/553b6289-52a4-4f71-a2d4-ece2ffb8a6eb",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c07c3c7b-dea2-4409-85f6-bab95a965861",
          "title" : "edgerouter-2414"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f0038590-8ae4-4e9d-ac76-d3cedb9124c9",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "c0dd5677-4ec1-4431-b140-5dc00b1f907f",
      "hostId" : "e5662d68-2454-4666-b86f-ba0f4a7258ab",
      "ownerIdentityId" : "a3f7cfca-4a25-4380-bd62-2d87dcd811a9",
      "createdBy" : "a3f7cfca-4a25-4380-bd62-2d87dcd811a9",
      "createdAt" : "2024-04-09T16:15:34.284172Z",
      "updatedAt" : "2024-04-09T16:15:34.284172Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2404",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2403",
      "productVersion" : "7.3.36",
      "networkId" : "e5e4ed18-5076-473b-9025-ce82cc3e7890",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e5662d68-2454-4666-b86f-ba0f4a7258ab"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e5e4ed18-5076-473b-9025-ce82cc3e7890",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c0dd5677-4ec1-4431-b140-5dc00b1f907f",
          "title" : "er-test-2403"
        }
      }
    }, {
      "id" : "c256093c-2b24-44d1-b781-95d67200023e",
      "hostId" : "944861f9-9222-44b8-83ad-bb42aae742a8",
      "ownerIdentityId" : "e41b1363-8047-448a-833e-3ab129fbd775",
      "createdBy" : "e41b1363-8047-448a-833e-3ab129fbd775",
      "createdAt" : "2024-04-09T16:15:38.127208Z",
      "updatedAt" : "2024-04-09T16:15:38.127208Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2688",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2687",
      "productVersion" : "7.3.36",
      "networkId" : "2fe582b6-23dd-43af-a404-153377d78f57",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/944861f9-9222-44b8-83ad-bb42aae742a8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2fe582b6-23dd-43af-a404-153377d78f57",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c256093c-2b24-44d1-b781-95d67200023e",
          "title" : "er-test-2687"
        }
      }
    }, {
      "id" : "c4111db3-b739-446c-8ddb-1883b51d4f10",
      "hostId" : "a8fa8151-7a6e-422e-8086-3abe6baade37",
      "ownerIdentityId" : "ae9a196d-cc69-4ac6-bac7-01638bb7a8a8",
      "createdBy" : "ae9a196d-cc69-4ac6-bac7-01638bb7a8a8",
      "createdAt" : "2024-04-09T16:15:38.309126Z",
      "updatedAt" : "2024-04-09T16:15:38.309126Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2730",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2729",
      "productVersion" : "7.3.36",
      "networkId" : "aaed2613-d33c-42fe-8135-827b298a0d9b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a8fa8151-7a6e-422e-8086-3abe6baade37"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/aaed2613-d33c-42fe-8135-827b298a0d9b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c4111db3-b739-446c-8ddb-1883b51d4f10",
          "title" : "er-test-2729"
        }
      }
    }, {
      "id" : "c7a4507a-3c61-420d-b3c9-537d81c4f854",
      "hostId" : "839512bf-7219-480d-8dbc-119b28dcf40a",
      "ownerIdentityId" : "46253d93-5b91-4311-be24-8d37b137e7d9",
      "createdBy" : "46253d93-5b91-4311-be24-8d37b137e7d9",
      "createdAt" : "2024-04-09T16:15:37.876244Z",
      "updatedAt" : "2024-04-09T16:15:37.876244Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2612",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2611",
      "productVersion" : "7.3.36",
      "networkId" : "0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/839512bf-7219-480d-8dbc-119b28dcf40a"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c7a4507a-3c61-420d-b3c9-537d81c4f854",
          "title" : "er-test-2611"
        }
      }
    }, {
      "id" : "cb198e33-ffa7-4f8d-baf4-172e975d8f0b",
      "hostId" : "d035d471-fcc6-4ee9-8656-b5d49428ba54",
      "ownerIdentityId" : "ef5cf354-83dd-4a11-b2bb-a588814d6351",
      "createdBy" : "ef5cf354-83dd-4a11-b2bb-a588814d6351",
      "createdAt" : "2024-04-09T16:15:33.850113Z",
      "updatedAt" : "2024-04-09T16:15:33.853983Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2239",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2238",
      "productVersion" : "7.3.36",
      "networkId" : "35aa5161-98df-4ebb-a015-f069da5474fe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "d50763db-0056-4c77-aa68-382b99858f10",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d50763db-0056-4c77-aa68-382b99858f10"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d035d471-fcc6-4ee9-8656-b5d49428ba54"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/35aa5161-98df-4ebb-a015-f069da5474fe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cb198e33-ffa7-4f8d-baf4-172e975d8f0b",
          "title" : "er-test-2238"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d50763db-0056-4c77-aa68-382b99858f10",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "ce0add1a-f462-4f85-b10c-23030a4b70b9",
      "hostId" : "b191a1e1-dd53-4d6f-aabb-575ea13b862f",
      "ownerIdentityId" : "61411bde-899a-4df6-8068-4dfbf14d8087",
      "createdBy" : "61411bde-899a-4df6-8068-4dfbf14d8087",
      "createdAt" : "2024-04-09T16:15:33.366599Z",
      "updatedAt" : "2024-04-09T16:15:33.366599Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2113",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2112",
      "productVersion" : "7.3.36",
      "networkId" : "032a825a-e7e2-47a2-bbe7-1acb7df590eb",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b191a1e1-dd53-4d6f-aabb-575ea13b862f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/032a825a-e7e2-47a2-bbe7-1acb7df590eb",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ce0add1a-f462-4f85-b10c-23030a4b70b9",
          "title" : "er-test-2112"
        }
      }
    }, {
      "id" : "cf392627-fd1e-4c11-94e2-e685ed987634",
      "hostId" : "26334017-794e-4f7d-8b50-83994abcd117",
      "ownerIdentityId" : "64747722-7f41-4dda-ab77-dda4f33a73b8",
      "createdBy" : "64747722-7f41-4dda-ab77-dda4f33a73b8",
      "createdAt" : "2024-04-09T16:15:34.010084Z",
      "updatedAt" : "2024-04-09T16:15:34.010084Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2284",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2283",
      "productVersion" : "7.3.36",
      "networkId" : "6c8665ad-2605-448f-a94f-870f75f2e444",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/26334017-794e-4f7d-8b50-83994abcd117"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6c8665ad-2605-448f-a94f-870f75f2e444",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cf392627-fd1e-4c11-94e2-e685ed987634",
          "title" : "er-test-2283"
        }
      }
    }, {
      "id" : "cfbefbf2-d750-4003-be4c-c171eded7cd9",
      "hostId" : "c75d7f37-473b-4717-9e35-8caa24e131e0",
      "ownerIdentityId" : "6fcc73cd-c671-4633-bc4c-e041c8d76769",
      "createdBy" : "6fcc73cd-c671-4633-bc4c-e041c8d76769",
      "createdAt" : "2024-04-09T16:15:33.401505Z",
      "updatedAt" : "2024-04-09T16:15:33.401505Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2131",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2130",
      "productVersion" : "7.3.36",
      "networkId" : "7a0c316e-b9de-47ed-8b29-13f65537f248",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c75d7f37-473b-4717-9e35-8caa24e131e0"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a0c316e-b9de-47ed-8b29-13f65537f248",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cfbefbf2-d750-4003-be4c-c171eded7cd9",
          "title" : "er-test-2130"
        }
      }
    }, {
      "id" : "d0138842-5868-473a-b792-def8c319dec1",
      "hostId" : "99675d10-c6a4-4433-818d-866036cb0139",
      "ownerIdentityId" : "7a23f2be-cdaf-49ff-a64e-f6458c06f46e",
      "createdBy" : "7a23f2be-cdaf-49ff-a64e-f6458c06f46e",
      "createdAt" : "2024-04-09T16:15:38.083353Z",
      "updatedAt" : "2024-04-09T16:15:38.092362Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2675",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "edgerouter-2676",
      "productVersion" : "7.3.69",
      "networkId" : "e74742ab-1f03-4984-a500-1740959f388a",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "CUSTOMER",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/99675d10-c6a4-4433-818d-866036cb0139"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e74742ab-1f03-4984-a500-1740959f388a",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d0138842-5868-473a-b792-def8c319dec1",
          "title" : "edgerouter-2676"
        }
      }
    }, {
      "id" : "d2a16ced-e687-4c61-ad65-fc97934990ae",
      "hostId" : "ab488e51-80ac-4cd8-9f89-01cfbd00d5df",
      "ownerIdentityId" : "803b29eb-dc80-45cd-ab74-b1f80cb8f99d",
      "createdBy" : "803b29eb-dc80-45cd-ab74-b1f80cb8f99d",
      "createdAt" : "2024-04-09T16:15:33.808037Z",
      "updatedAt" : "2024-04-09T16:15:33.811385Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2212",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2211",
      "productVersion" : "7.3.36",
      "networkId" : "3fddf899-45a1-45ae-a883-c29ea5e86ebe",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "c834482a-f1d7-452d-8569-55b4cbb96c2c",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c834482a-f1d7-452d-8569-55b4cbb96c2c"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ab488e51-80ac-4cd8-9f89-01cfbd00d5df"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/3fddf899-45a1-45ae-a883-c29ea5e86ebe",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d2a16ced-e687-4c61-ad65-fc97934990ae",
          "title" : "er-test-2211"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c834482a-f1d7-452d-8569-55b4cbb96c2c",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "d35f6c48-9d8d-4a22-9fb5-2169979422b5",
      "hostId" : "c900cf2c-efab-4992-9e74-d16e742ef59a",
      "ownerIdentityId" : "88ba305b-7fde-44d7-a688-ed65b845ce1a",
      "createdBy" : "88ba305b-7fde-44d7-a688-ed65b845ce1a",
      "createdAt" : "2024-04-09T16:15:33.556494Z",
      "updatedAt" : "2024-04-09T16:15:33.556494Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2182",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2181",
      "productVersion" : "7.3.36",
      "networkId" : "1c4f631c-f11a-4283-a008-ba38959c0783",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c900cf2c-efab-4992-9e74-d16e742ef59a"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c4f631c-f11a-4283-a008-ba38959c0783",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d35f6c48-9d8d-4a22-9fb5-2169979422b5",
          "title" : "er-test-2181"
        }
      }
    }, {
      "id" : "d464d04a-0f6b-496c-a64c-140879d39fcc",
      "hostId" : "cf1f8021-af7d-4c30-a4cb-254d665aae62",
      "ownerIdentityId" : "bc810b7f-5263-4fc4-bc11-b054c20a08cc",
      "createdBy" : "bc810b7f-5263-4fc4-bc11-b054c20a08cc",
      "createdAt" : "2024-04-09T16:15:34.011085Z",
      "updatedAt" : "2024-04-09T16:15:34.011085Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2287",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2286",
      "productVersion" : "7.3.36",
      "networkId" : "6c8665ad-2605-448f-a94f-870f75f2e444",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cf1f8021-af7d-4c30-a4cb-254d665aae62"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6c8665ad-2605-448f-a94f-870f75f2e444",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d464d04a-0f6b-496c-a64c-140879d39fcc",
          "title" : "er-test-2286"
        }
      }
    }, {
      "id" : "d48c1531-0444-4c93-be9c-bb71b99a8bdd",
      "hostId" : "24f8bf13-f89c-40e8-a929-6094f84ac585",
      "ownerIdentityId" : "c7d026a4-8e73-40db-86af-0c067b603c2f",
      "createdBy" : "c7d026a4-8e73-40db-86af-0c067b603c2f",
      "createdAt" : "2024-04-09T16:15:33.491754Z",
      "updatedAt" : "2024-04-09T16:15:33.491754Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2161",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2160",
      "productVersion" : "7.3.36",
      "networkId" : "a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/24f8bf13-f89c-40e8-a929-6094f84ac585"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a921eb1b-d1b7-4f57-841b-c72cf9b53a47",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d48c1531-0444-4c93-be9c-bb71b99a8bdd",
          "title" : "er-test-2160"
        }
      }
    }, {
      "id" : "d5c1d620-dfec-4892-b804-66f0e122e384",
      "hostId" : "16e862d9-3384-4cde-979a-d6992951c7fe",
      "ownerIdentityId" : "527f9624-725f-4cb5-8611-7d9cc183316e",
      "createdBy" : "527f9624-725f-4cb5-8611-7d9cc183316e",
      "createdAt" : "2024-04-09T16:15:37.593610Z",
      "updatedAt" : "2024-04-09T16:15:37.593610Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2507",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2506",
      "productVersion" : "7.3.36",
      "networkId" : "d1ead057-36b0-4256-aa2d-74233fe726f9",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/16e862d9-3384-4cde-979a-d6992951c7fe"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d1ead057-36b0-4256-aa2d-74233fe726f9",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d5c1d620-dfec-4892-b804-66f0e122e384",
          "title" : "er-test-2506"
        }
      }
    }, {
      "id" : "d9f9031c-4fe0-4a5e-bd59-d2265e0545d1",
      "hostId" : "ad15040f-8096-4aae-936c-3bbebf0d1a13",
      "ownerIdentityId" : "96d25dd9-146c-4594-b0dc-ae6b788352e5",
      "createdBy" : "96d25dd9-146c-4594-b0dc-ae6b788352e5",
      "createdAt" : "2024-04-09T16:15:36.025542Z",
      "updatedAt" : "2024-04-09T16:15:36.052038Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "vnn5XWdPp5DmfFiupt8DE",
      "domainName" : "d9f9031c-4fe0-4a5e-bd59-d2265e0545d1.fake.netfoundry.io",
      "alternateDomainName" : null,
      "name" : "Test edge router hMRZEGePFerBtRvMeIPLQ",
      "productVersion" : "7.3.36",
      "networkId" : "38584c44-1221-465f-b396-413584f374fd",
      "jwt" : "abcJWT",
      "linkListener" : false,
      "tunnelerEnabled" : false,
      "noTraversal" : true,
      "online" : false,
      "verified" : false,
      "status" : "ERROR",
      "softwareDeploymentStateId" : "8f0afa3f-1926-4fb3-aafe-04e54593b961",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8f0afa3f-1926-4fb3-aafe-04e54593b961"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ad15040f-8096-4aae-936c-3bbebf0d1a13"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/38584c44-1221-465f-b396-413584f374fd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d9f9031c-4fe0-4a5e-bd59-d2265e0545d1",
          "title" : "Test edge router hMRZEGePFerBtRvMeIPLQ"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8f0afa3f-1926-4fb3-aafe-04e54593b961",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "da2e6907-ffe4-4602-b72e-43d50674552e",
      "hostId" : "24a4bc1b-665b-4523-acdd-ecb7f2be09a3",
      "ownerIdentityId" : "3aa149b5-f85a-4dbd-8ad7-6a028957f623",
      "createdBy" : "3aa149b5-f85a-4dbd-8ad7-6a028957f623",
      "createdAt" : "2024-04-09T16:15:33.588175Z",
      "updatedAt" : "2024-04-09T16:15:33.591992Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2194",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2193",
      "productVersion" : "7.3.36",
      "networkId" : "013f0628-5b4d-4b93-8d20-95bebd2e1232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "3e7066e9-d5f4-4d85-a9c7-067d0117005e",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/3e7066e9-d5f4-4d85-a9c7-067d0117005e"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/24a4bc1b-665b-4523-acdd-ecb7f2be09a3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/013f0628-5b4d-4b93-8d20-95bebd2e1232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/da2e6907-ffe4-4602-b72e-43d50674552e",
          "title" : "er-test-2193"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/3e7066e9-d5f4-4d85-a9c7-067d0117005e",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "da664213-f396-4c73-b6a6-5daf3ef63707",
      "hostId" : "9e82911e-35cb-4fc5-8d34-61e271cff982",
      "ownerIdentityId" : "d6584768-8cfb-4f6e-b49c-97bf9b95fbb0",
      "createdBy" : "d6584768-8cfb-4f6e-b49c-97bf9b95fbb0",
      "createdAt" : "2024-04-09T16:15:33.450728Z",
      "updatedAt" : "2024-04-09T16:15:33.453988Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2140",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2139",
      "productVersion" : "7.3.36",
      "networkId" : "41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "0cbf9493-bea2-49ec-8344-63eb308527cc",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0cbf9493-bea2-49ec-8344-63eb308527cc"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9e82911e-35cb-4fc5-8d34-61e271cff982"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/41b4d132-1236-4a8f-9af9-bdb52fd15cc2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/da664213-f396-4c73-b6a6-5daf3ef63707",
          "title" : "er-test-2139"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0cbf9493-bea2-49ec-8344-63eb308527cc",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "da7d93fe-f722-4870-b81f-959af2cea080",
      "hostId" : "711052ee-68cd-4066-9145-14a55c1135a7",
      "ownerIdentityId" : "beb64aae-d6c0-4792-9e1e-8acfd4bdb17f",
      "createdBy" : "beb64aae-d6c0-4792-9e1e-8acfd4bdb17f",
      "createdAt" : "2024-04-09T16:15:34.154702Z",
      "updatedAt" : "2024-04-09T16:15:34.154702Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2368",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2367",
      "productVersion" : "7.3.36",
      "networkId" : "2d3f69f6-74b0-4260-b74d-478194eeac96",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/711052ee-68cd-4066-9145-14a55c1135a7"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d3f69f6-74b0-4260-b74d-478194eeac96",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/da7d93fe-f722-4870-b81f-959af2cea080",
          "title" : "er-test-2367"
        }
      }
    }, {
      "id" : "dc64ae68-c519-4517-8541-397ffe1ec528",
      "hostId" : "81dd47c7-44dd-4886-b1b3-93ad16ac8bee",
      "ownerIdentityId" : "cf4ff6d4-d725-4777-876f-1bcc980fc68d",
      "createdBy" : "cf4ff6d4-d725-4777-876f-1bcc980fc68d",
      "createdAt" : "2024-04-09T16:15:37.592775Z",
      "updatedAt" : "2024-04-09T16:15:37.630379Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2504",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2503",
      "productVersion" : "7.3.36",
      "networkId" : "d1ead057-36b0-4256-aa2d-74233fe726f9",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "9f7e9b0a-5c59-4960-91d5-33470519980e",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/9f7e9b0a-5c59-4960-91d5-33470519980e"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/81dd47c7-44dd-4886-b1b3-93ad16ac8bee"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d1ead057-36b0-4256-aa2d-74233fe726f9",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/dc64ae68-c519-4517-8541-397ffe1ec528",
          "title" : "er-test-2503"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/9f7e9b0a-5c59-4960-91d5-33470519980e",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "df970cec-407e-485f-98fa-0d3c5518a601",
      "hostId" : "6087c90f-c3d4-4974-aebc-faee51172fcc",
      "ownerIdentityId" : "0a3273a7-3cdb-4bc8-8573-16e9e4b3c93b",
      "createdBy" : "0a3273a7-3cdb-4bc8-8573-16e9e4b3c93b",
      "createdAt" : "2024-04-09T16:15:33.590889Z",
      "updatedAt" : "2024-04-09T16:15:33.590889Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2203",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2202",
      "productVersion" : "7.3.36",
      "networkId" : "013f0628-5b4d-4b93-8d20-95bebd2e1232",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6087c90f-c3d4-4974-aebc-faee51172fcc"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/013f0628-5b4d-4b93-8d20-95bebd2e1232",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/df970cec-407e-485f-98fa-0d3c5518a601",
          "title" : "er-test-2202"
        }
      }
    }, {
      "id" : "e06352b2-ba1a-4996-9cef-f405e77b577c",
      "hostId" : "b3c7a290-7819-42b1-8b5b-9fe22aa2a924",
      "ownerIdentityId" : "6a463e97-e8d3-4a80-ae40-e244b8c1e028",
      "createdBy" : "6a463e97-e8d3-4a80-ae40-e244b8c1e028",
      "createdAt" : "2024-04-09T16:15:37.828166Z",
      "updatedAt" : "2024-04-09T16:15:37.828166Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2594",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2593",
      "productVersion" : "7.3.36",
      "networkId" : "7aade141-ebb3-4b66-b234-e994b3870775",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b3c7a290-7819-42b1-8b5b-9fe22aa2a924"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7aade141-ebb3-4b66-b234-e994b3870775",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e06352b2-ba1a-4996-9cef-f405e77b577c",
          "title" : "er-test-2593"
        }
      }
    }, {
      "id" : "e151ab10-27e3-4049-8813-806d482be12e",
      "hostId" : "2e051543-8794-4405-bc0e-0be43335ac40",
      "ownerIdentityId" : "e591e806-9f42-40ef-be7f-d03cd62fc661",
      "createdBy" : "e591e806-9f42-40ef-be7f-d03cd62fc661",
      "createdAt" : "2024-04-09T16:15:33.314840Z",
      "updatedAt" : "2024-04-09T16:15:33.314840Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2089",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2088",
      "productVersion" : "7.3.36",
      "networkId" : "63a8ea3f-6e94-417e-9346-b4a5212eb182",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2e051543-8794-4405-bc0e-0be43335ac40"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/63a8ea3f-6e94-417e-9346-b4a5212eb182",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e151ab10-27e3-4049-8813-806d482be12e",
          "title" : "er-test-2088"
        }
      }
    }, {
      "id" : "e23e727b-ec3f-4e11-9f38-abe48ce1e9ab",
      "hostId" : "3599b3f7-bdcd-4c91-be2c-ffcc111de8b3",
      "ownerIdentityId" : "47620325-d1a2-4200-bf04-c620c2738509",
      "createdBy" : "47620325-d1a2-4200-bf04-c620c2738509",
      "createdAt" : "2024-04-09T16:15:34.334337Z",
      "updatedAt" : "2024-04-09T16:15:34.338143Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2423",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2422",
      "productVersion" : "7.3.36",
      "networkId" : "62e026b1-2371-4b7f-8ca6-a53caf47497c",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "298dc1e8-cb1d-47d8-a2c2-99af25c7cbb9",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/298dc1e8-cb1d-47d8-a2c2-99af25c7cbb9"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3599b3f7-bdcd-4c91-be2c-ffcc111de8b3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/62e026b1-2371-4b7f-8ca6-a53caf47497c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e23e727b-ec3f-4e11-9f38-abe48ce1e9ab",
          "title" : "er-test-2422"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/298dc1e8-cb1d-47d8-a2c2-99af25c7cbb9",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "e2cd0147-a42e-4948-9896-50a0d7a81b0d",
      "hostId" : "b84f2bb4-3d4f-4699-b8b5-9ec2aadd4523",
      "ownerIdentityId" : "b2f9364c-e8fd-4537-9967-c90faaff94b2",
      "createdBy" : "b2f9364c-e8fd-4537-9967-c90faaff94b2",
      "createdAt" : "2024-04-09T16:15:34.116677Z",
      "updatedAt" : "2024-04-09T16:15:34.116677Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2344",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2343",
      "productVersion" : "7.3.36",
      "networkId" : "4b750e3a-75c4-4a15-ae2b-66cd49447675",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b84f2bb4-3d4f-4699-b8b5-9ec2aadd4523"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4b750e3a-75c4-4a15-ae2b-66cd49447675",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e2cd0147-a42e-4948-9896-50a0d7a81b0d",
          "title" : "er-test-2343"
        }
      }
    }, {
      "id" : "e3686035-ba69-4caa-86d3-19a298ac1092",
      "hostId" : "996071d5-53ce-45e6-a5f9-ac77944eafb3",
      "ownerIdentityId" : "0d45e11d-b677-489e-b004-1dcb91c15f42",
      "createdBy" : "0d45e11d-b677-489e-b004-1dcb91c15f42",
      "createdAt" : "2024-04-09T16:15:34.117341Z",
      "updatedAt" : "2024-04-09T16:15:34.117341Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2347",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2346",
      "productVersion" : "7.3.36",
      "networkId" : "4b750e3a-75c4-4a15-ae2b-66cd49447675",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/996071d5-53ce-45e6-a5f9-ac77944eafb3"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/4b750e3a-75c4-4a15-ae2b-66cd49447675",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e3686035-ba69-4caa-86d3-19a298ac1092",
          "title" : "er-test-2346"
        }
      }
    }, {
      "id" : "e6d0e3a3-3c9b-4468-afac-1075c17092d1",
      "hostId" : "14053994-d6d9-4b3b-a398-a289e0a92a27",
      "ownerIdentityId" : "35bb1d15-1eb3-4693-8fec-4a79760c4f28",
      "createdBy" : "35bb1d15-1eb3-4693-8fec-4a79760c4f28",
      "createdAt" : "2024-04-09T16:15:38.349837Z",
      "updatedAt" : "2024-04-09T16:15:38.353733Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2739",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2738",
      "productVersion" : "7.3.36",
      "networkId" : "5336ba3e-81fe-47aa-878d-bb197595431b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "0d7a1ed7-bceb-4445-b357-0cf5cede6895",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0d7a1ed7-bceb-4445-b357-0cf5cede6895"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/14053994-d6d9-4b3b-a398-a289e0a92a27"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/5336ba3e-81fe-47aa-878d-bb197595431b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e6d0e3a3-3c9b-4468-afac-1075c17092d1",
          "title" : "er-test-2738"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0d7a1ed7-bceb-4445-b357-0cf5cede6895",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "e94b7d49-6bc5-4423-92d5-8729e57ecf14",
      "hostId" : "fa10d416-4bf2-4caa-a5ba-e578fd0a30b5",
      "ownerIdentityId" : "febd8827-66e7-4065-80aa-02b6cec147c2",
      "createdBy" : "febd8827-66e7-4065-80aa-02b6cec147c2",
      "createdAt" : "2024-04-09T16:15:33.399092Z",
      "updatedAt" : "2024-04-09T16:15:33.419566Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2122",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2121",
      "productVersion" : "7.3.36",
      "networkId" : "7a0c316e-b9de-47ed-8b29-13f65537f248",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "340f6f14-ccf4-42b4-b65f-5b5ff208b31e",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/340f6f14-ccf4-42b4-b65f-5b5ff208b31e"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fa10d416-4bf2-4caa-a5ba-e578fd0a30b5"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a0c316e-b9de-47ed-8b29-13f65537f248",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e94b7d49-6bc5-4423-92d5-8729e57ecf14",
          "title" : "er-test-2121"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/340f6f14-ccf4-42b4-b65f-5b5ff208b31e",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "e9572d01-7318-461e-b21f-7c38b9b18d1d",
      "hostId" : "1f13d22c-02e3-4463-b996-c3f92adb6ea8",
      "ownerIdentityId" : "9baf50ac-7873-4494-a387-8911f0028183",
      "createdBy" : "9baf50ac-7873-4494-a387-8911f0028183",
      "createdAt" : "2024-04-09T16:15:33.188367Z",
      "updatedAt" : "2024-04-09T16:15:33.195638Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2068",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2067",
      "productVersion" : "7.3.36",
      "networkId" : "f5f936ae-361b-40dd-99eb-424e086c5bfc",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : "d0303b48-af71-4bae-a9a0-469992f39bf1",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d0303b48-af71-4bae-a9a0-469992f39bf1"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1f13d22c-02e3-4463-b996-c3f92adb6ea8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/f5f936ae-361b-40dd-99eb-424e086c5bfc",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e9572d01-7318-461e-b21f-7c38b9b18d1d",
          "title" : "er-test-2067"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d0303b48-af71-4bae-a9a0-469992f39bf1",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "ed7455f1-a8d4-4a3d-8510-4de1d9454849",
      "hostId" : "b656a347-8873-427d-96a5-abd6d5958ef8",
      "ownerIdentityId" : "3ab6b1ec-ae3d-4ef4-a22e-7532d6341a13",
      "createdBy" : "3ab6b1ec-ae3d-4ef4-a22e-7532d6341a13",
      "createdAt" : "2024-04-09T16:15:38.306866Z",
      "updatedAt" : "2024-04-09T16:15:38.327530Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2721",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2720",
      "productVersion" : "7.3.36",
      "networkId" : "aaed2613-d33c-42fe-8135-827b298a0d9b",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "ERROR",
      "softwareDeploymentStateId" : "98b34448-e2a3-4581-95ea-8c9aaa45bd21",
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "software-deployment-state" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/98b34448-e2a3-4581-95ea-8c9aaa45bd21"
        },
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b656a347-8873-427d-96a5-abd6d5958ef8"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/aaed2613-d33c-42fe-8135-827b298a0d9b",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ed7455f1-a8d4-4a3d-8510-4de1d9454849",
          "title" : "er-test-2720"
        },
        "softwareDeploymentState" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/98b34448-e2a3-4581-95ea-8c9aaa45bd21",
          "deprecation" : "Use software-deployment-state link instead"
        }
      }
    }, {
      "id" : "f01f87de-0534-4c97-9fd1-7d5095938e33",
      "hostId" : "8466c486-b9cd-42f1-bb69-dadf2a7073f9",
      "ownerIdentityId" : "9434c0d4-5504-46a7-b434-0fc9383ca5a3",
      "createdBy" : "9434c0d4-5504-46a7-b434-0fc9383ca5a3",
      "createdAt" : "2024-04-09T16:15:37.628826Z",
      "updatedAt" : "2024-04-09T16:15:37.628826Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2513",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2512",
      "productVersion" : "7.3.36",
      "networkId" : "d1ead057-36b0-4256-aa2d-74233fe726f9",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8466c486-b9cd-42f1-bb69-dadf2a7073f9"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d1ead057-36b0-4256-aa2d-74233fe726f9",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f01f87de-0534-4c97-9fd1-7d5095938e33",
          "title" : "er-test-2512"
        }
      }
    }, {
      "id" : "f1298855-27d4-4617-9d99-30b878ac59ad",
      "hostId" : "f0247152-1fcc-4bc5-ac3e-ce27464a3b4d",
      "ownerIdentityId" : "ddbbbe97-4d29-44bb-bcf5-3ac2bf085264",
      "createdBy" : "ddbbbe97-4d29-44bb-bcf5-3ac2bf085264",
      "createdAt" : "2024-04-09T16:15:33.555632Z",
      "updatedAt" : "2024-04-09T16:15:33.555632Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2179",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2178",
      "productVersion" : "7.3.36",
      "networkId" : "1c4f631c-f11a-4283-a008-ba38959c0783",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f0247152-1fcc-4bc5-ac3e-ce27464a3b4d"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c4f631c-f11a-4283-a008-ba38959c0783",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f1298855-27d4-4617-9d99-30b878ac59ad",
          "title" : "er-test-2178"
        }
      }
    }, {
      "id" : "f30c64ae-dfb1-4571-aa96-178507f0f145",
      "hostId" : "83894111-2fa7-45d4-b4b7-9e1f24681a46",
      "ownerIdentityId" : "ab1d8c83-1b16-45ad-8ed8-7789b37f8660",
      "createdBy" : "ab1d8c83-1b16-45ad-8ed8-7789b37f8660",
      "createdAt" : "2024-04-09T16:15:37.826283Z",
      "updatedAt" : "2024-04-09T16:15:37.826283Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2588",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2587",
      "productVersion" : "7.3.36",
      "networkId" : "7aade141-ebb3-4b66-b234-e994b3870775",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/83894111-2fa7-45d4-b4b7-9e1f24681a46"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7aade141-ebb3-4b66-b234-e994b3870775",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f30c64ae-dfb1-4571-aa96-178507f0f145",
          "title" : "er-test-2587"
        }
      }
    }, {
      "id" : "f5404d14-6835-4aba-b1c9-c3612bc0bf46",
      "hostId" : "3c2231a8-84e4-4f88-a605-0f8f8018f930",
      "ownerIdentityId" : "0b6d7116-ac46-4dca-bd03-3b31223d0d9d",
      "createdBy" : "0b6d7116-ac46-4dca-bd03-3b31223d0d9d",
      "createdAt" : "2024-04-09T16:15:34.087654Z",
      "updatedAt" : "2024-04-09T16:15:34.087654Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2329",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2328",
      "productVersion" : "7.3.36",
      "networkId" : "7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3c2231a8-84e4-4f88-a605-0f8f8018f930"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7f69a359-060e-4a8a-b6f4-f2e8be0b266d",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f5404d14-6835-4aba-b1c9-c3612bc0bf46",
          "title" : "er-test-2328"
        }
      }
    }, {
      "id" : "f7e02efa-64f0-4070-b3ff-c558974ef4d7",
      "hostId" : "076dfa22-4782-485c-a689-bef27242c254",
      "ownerIdentityId" : "49ad9768-4a15-4c1e-8b54-b893edb52b41",
      "createdBy" : "49ad9768-4a15-4c1e-8b54-b893edb52b41",
      "createdAt" : "2024-04-09T16:15:36.006937Z",
      "updatedAt" : "2024-04-09T16:15:36.006937Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2489",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2488",
      "productVersion" : "7.3.36",
      "networkId" : "38584c44-1221-465f-b396-413584f374fd",
      "jwt" : null,
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : true,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/076dfa22-4782-485c-a689-bef27242c254"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/38584c44-1221-465f-b396-413584f374fd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f7e02efa-64f0-4070-b3ff-c558974ef4d7",
          "title" : "er-test-2488"
        }
      }
    }, {
      "id" : "fedd4aa5-6f3d-4f03-b7ee-00feb0e0b94f",
      "hostId" : "c00f60ba-f608-42f9-9ba3-5f73c1c2937f",
      "ownerIdentityId" : "70727a2d-57ab-4f3c-aadc-b8648617ff49",
      "createdBy" : "70727a2d-57ab-4f3c-aadc-b8648617ff49",
      "createdAt" : "2024-04-09T16:15:37.875442Z",
      "updatedAt" : "2024-04-09T16:15:37.875442Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "zitiId" : "ziti-id-2609",
      "domainName" : null,
      "alternateDomainName" : null,
      "name" : "er-test-2608",
      "productVersion" : "7.3.36",
      "networkId" : "0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
      "jwt" : "fake-jwt",
      "linkListener" : true,
      "tunnelerEnabled" : true,
      "noTraversal" : false,
      "online" : false,
      "verified" : false,
      "status" : "PROVISIONED",
      "softwareDeploymentStateId" : null,
      "provider" : "AWS",
      "region" : "us-east-1",
      "hostSize" : "small",
      "attributes" : [ ],
      "registration" : null,
      "_links" : {
        "host" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c00f60ba-f608-42f9-9ba3-5f73c1c2937f"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fedd4aa5-6f3d-4f03-b7ee-00feb0e0b94f",
          "title" : "er-test-2608"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 151,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Edge Router

GET /v2/edge-routers/{id}

Authorization

This endpoint requires read action on the edge-router resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/b602d72b-d971-4b09-ab28-88f052780a30' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJwd1FpeGtQUXlvT3RZZnNvamZoRjR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUyMmJmNWE5LWI3ZGYtNDRiYy05MGYxLTFhMWY0NTU5MjEwNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMzOSwiZXhwIjoxNzEyNjgyOTM5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM0M2E4ZDdhLTg3ODItNDE1OS1iMjZlLWMzOGYzZWJmNzNkZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMzOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.K8mdI81m0ZgNhsAavgXJbONgYpFOaMOU4jtrjFe-fz2HtNLoJZstmqb3QTG3qQLFXfpw76HC73kBCCNahVkh9YdkHgJfOM6vVbpiSHwjCm9LUfz8mBXBB2Az8yCwvZr9fSD34sxLCQLfpD6yWSDt1W7mHpA9Q3afv1VAxpdq8iCo2mNwey2tuBuS4DzmxEIc7hrNjNAn-tHwlwnOW6f5iLRKUk6j9aA7AhdCMrir4pgjqgP1ondlhCU2YqJ0CR5DThs90Hz-ItEjsHIe7sBD7ekREfed1W-l-NLBYXkG5E5aFRDojEW4HVltzjAmgTSZ1lG_jlHb8p1DWfcZb8TpfA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1809

{
  "id" : "b602d72b-d971-4b09-ab28-88f052780a30",
  "hostId" : "9434b0b0-0100-407a-869e-a33c38fcbe75",
  "ownerIdentityId" : "7de55909-3044-4fdb-85f1-6a4e5357d5a8",
  "createdBy" : "7de55909-3044-4fdb-85f1-6a4e5357d5a8",
  "createdAt" : "2024-04-09T16:15:39.259355Z",
  "updatedAt" : "2024-04-09T16:15:39.262400Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "zitiId" : "ziti-id-2793",
  "domainName" : null,
  "alternateDomainName" : null,
  "name" : "er-test-2792",
  "productVersion" : "7.3.36",
  "networkId" : "c33c6e75-3bb3-42fe-9e9c-2c7491dfab33",
  "jwt" : null,
  "linkListener" : true,
  "tunnelerEnabled" : true,
  "noTraversal" : false,
  "online" : false,
  "verified" : true,
  "status" : "PROVISIONED",
  "softwareDeploymentStateId" : "7baddb24-5866-4045-a901-99f68dd05149",
  "provider" : "AWS",
  "region" : "us-east-1",
  "hostSize" : "small",
  "attributes" : [ ],
  "registration" : null,
  "_links" : {
    "software-deployment-state" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7baddb24-5866-4045-a901-99f68dd05149"
    },
    "host" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9434b0b0-0100-407a-869e-a33c38fcbe75"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c33c6e75-3bb3-42fe-9e9c-2c7491dfab33",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b602d72b-d971-4b09-ab28-88f052780a30",
      "title" : "er-test-2792"
    },
    "softwareDeploymentState" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7baddb24-5866-4045-a901-99f68dd05149",
      "deprecation" : "Use software-deployment-state link instead"
    }
  }
}

Create Edge Router

POST /v2/edge-routers

Authorization

This endpoint requires create action on the edge-router resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

networkId

String

true

zitiId

String

true

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

region

String

true

hostSize

String

true

linkListener

Boolean

true

wssListener

Boolean

true

tunnelerEnabled

Boolean

true

noTraversal

Boolean

true

enabled

Boolean

true

alternateDomainName

String

true

attributes

Array[String]

true

endpointAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJySHkxZ3c0YVdSVWZyZXd5VDZod1JnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ3ZmQ5N2YwLWUzODgtNGY2OS1hYmFkLTUyZWM1ODU1ZDVjZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMzNCwiZXhwIjoxNzEyNjgyOTM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk1OWVjMTYxLTNjNzMtNDUzMy04NDViLWZmZTg2MWE0NjBiZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Jmv6d-u7n04EsQU8VeqkaKzB6JmKi2UmlR8lHXeBWsjMVAwHDebiLuB0JU7GmJ36oBLCJNqNZX1xoyuDZlkZxWIgzAHZlsmlzX613wS59_fhqSyjtiWJAcrp7D3hVxs1sqNYJr2RiaMC_AzpXfknbZG7OtP9n4UUg4448y0_17K8-qDgw_ye4FtcrsfzTorG6B1SN6wF3EoPIRgiYg3hqNFCmFiU6KUTmrPz-PI0JEFTetVJKciVnA6ZzS1lOUw7YV2maCYiNIREf_tTtJwprL20v7RxxGmnimGH0ERK9uivo8b6IQG8wXwgarPSMerZTW5yBg1TbC13MKmWEqTqZA' \
    -d '{"name":"Test edge router 1712679334","networkId":"e3cd2948-9a13-435a-a98d-98afb0345080","provider":"AWS","region":"us-east-1","tunnelerEnabled":null,"noTraversal":null,"attributes":[]}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1202

{
  "id" : "41d05bc8-c525-48c1-91a8-f2073c6bfa87",
  "hostId" : null,
  "ownerIdentityId" : "47fd97f0-e388-4f69-abad-52ec5855d5cf",
  "createdBy" : "47fd97f0-e388-4f69-abad-52ec5855d5cf",
  "createdAt" : "2024-04-09T16:15:34.437220Z",
  "updatedAt" : "2024-04-09T16:15:34.437220Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "zitiId" : null,
  "domainName" : null,
  "alternateDomainName" : null,
  "name" : "Test edge router 1712679334",
  "productVersion" : "7.3.36",
  "networkId" : "e3cd2948-9a13-435a-a98d-98afb0345080",
  "jwt" : null,
  "linkListener" : false,
  "tunnelerEnabled" : false,
  "noTraversal" : false,
  "online" : false,
  "verified" : false,
  "status" : "NEW",
  "softwareDeploymentStateId" : null,
  "provider" : null,
  "region" : null,
  "hostSize" : null,
  "attributes" : [ ],
  "registration" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/e3cd2948-9a13-435a-a98d-98afb0345080",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/41d05bc8-c525-48c1-91a8-f2073c6bfa87",
      "title" : "Test edge router 1712679334"
    }
  }
}

Partial Update Edge Router

PATCH /v2/edge-routers/{id}

Authorization

This endpoint requires update action on the edge-router resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

noTraversal

Boolean

true

linkListener

Boolean

true

enabled

Boolean

true

attributes

Array[String]

true

empty

Boolean

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/a4963b37-657e-4d4e-9e99-26ed2ed528b4' -i -X PATCH \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ3cllza1ZVRVFfeHlqRnJsQVZrakRBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAzMDc5YWMyLTY5NTYtNGNlZS04YzkzLWM2N2I1ODI2N2MxMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMzOSwiZXhwIjoxNzEyNjgyOTM5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQzYjFlMzc4LThjZjMtNDhlOS05NWEzLWQ3YmVkNTU3OWM0OFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMzOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.TlQ1rAMLFgOwPNeRPTB0MbLkxAUJobBOMSagAYNgxMHWEVTE9YG9FJbISNtDx1pKY95bSvd9O9iTj5foVwzAnDjn1HBbQETNGY-hMDP1c94UAwW_wioiS0RZT5jYo7XZnjMoctYO_NBpMNIzE-aZulI4W3fan6htPRmItIzgXmn4VVT6qgdjY_WUHTqfo7DfxqlRHyQiBqK7v0fm2dRQT74-Onp0CqG1vontiaUhx2nAUzOaKVnsx09AG2PxCpR6aARJP96CWmPmSRkezfM76y_mV5YbGhKAxrrzB6W-svi6hhRkceDhMnTYB_3irkBZ-AC7S7yXx4lrnbb0khXudg' \
    -d '{"name":"Updated name","noTraversal":null,"enabled":null,"empty":false}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1809

{
  "id" : "a4963b37-657e-4d4e-9e99-26ed2ed528b4",
  "hostId" : "b0a92a17-a035-45d1-b200-12562c4a6190",
  "ownerIdentityId" : "96222263-2797-445e-9121-feb08433b299",
  "createdBy" : "96222263-2797-445e-9121-feb08433b299",
  "createdAt" : "2024-04-09T16:15:39.192367Z",
  "updatedAt" : "2024-04-09T16:15:39.209367Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "zitiId" : "ziti-id-2775",
  "domainName" : null,
  "alternateDomainName" : null,
  "name" : "Updated name",
  "productVersion" : "7.3.36",
  "networkId" : "d1e3dc4c-81f5-454d-a93a-88016d61a98c",
  "jwt" : null,
  "linkListener" : true,
  "tunnelerEnabled" : true,
  "noTraversal" : false,
  "online" : false,
  "verified" : true,
  "status" : "PROVISIONED",
  "softwareDeploymentStateId" : "d8c289dc-65de-469c-991f-49ba306913d0",
  "provider" : "AWS",
  "region" : "us-east-1",
  "hostSize" : "small",
  "attributes" : [ ],
  "registration" : null,
  "_links" : {
    "software-deployment-state" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d8c289dc-65de-469c-991f-49ba306913d0"
    },
    "host" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b0a92a17-a035-45d1-b200-12562c4a6190"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d1e3dc4c-81f5-454d-a93a-88016d61a98c",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a4963b37-657e-4d4e-9e99-26ed2ed528b4",
      "title" : "Updated name"
    },
    "softwareDeploymentState" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d8c289dc-65de-469c-991f-49ba306913d0",
      "deprecation" : "Use software-deployment-state link instead"
    }
  }
}

Delete Edge Router

DELETE /v2/edge-routers/{id}

Authorization

This endpoint requires delete action on the edge-router resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/4c0dadfc-d950-4af4-8d51-1f9b4e34beab' -i -X DELETE \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJINElubHpzcHVKU1oyUzdyUlZ3SmRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImRkN2RjOTcwLTBmN2UtNGJkZS04MzNiLTE3MDQ1ZDZhNDI4ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMzNywiZXhwIjoxNzEyNjgyOTM3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImZkZTQ5MDE5LTA1ODAtNDU2Zi04MTM2LWU1Njk1Yzc0NjEzY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMzN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.jE2ADJBuxDNTpK4VfYP94S2HzEF-PvDe4ghaeanxLHAos87VHtBWFUhcZQKemgpLfWYXnWmBAkDoHcRvm_t8Z5BvrGavMi1o4sITt_8Qy-LK_VQhKyDXsoIltvuu7b6cOrSjx4pDWJLtEAb9_rCfiw5kgmAR_GAyGl3XLZ8QByBEJqPSpjBnQON831HKY-aCwsg4mCbDsA5IvbAtue5o0D0_AW3cCCP3JXsNEkHB57O16X_Eg4apJCQPQxiMEOJCO3N0tq1BLCqCoxF1KSLzpJm4wrjT51CKrbW73N6fqXGJkAGp5TKIDQBawsxJ8rixKtxxFUvVnamA_rEfK3qg1g'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1394

{
  "id" : "4c0dadfc-d950-4af4-8d51-1f9b4e34beab",
  "hostId" : "7f244533-2066-4294-9cde-72de68298f4d",
  "ownerIdentityId" : "f10ab5e0-5870-4b63-96c5-7756b047cd8d",
  "createdBy" : "f10ab5e0-5870-4b63-96c5-7756b047cd8d",
  "createdAt" : "2024-04-09T16:15:37.874606Z",
  "updatedAt" : "2024-04-09T16:15:37.893636Z",
  "deletedBy" : "dd7dc970-0f7e-4bde-833b-17045d6a428d",
  "deletedAt" : null,
  "zitiId" : "ziti-id-2606",
  "domainName" : null,
  "alternateDomainName" : null,
  "name" : "er-test-2605",
  "productVersion" : "7.3.36",
  "networkId" : "0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
  "jwt" : null,
  "linkListener" : true,
  "tunnelerEnabled" : true,
  "noTraversal" : false,
  "online" : false,
  "verified" : true,
  "status" : "DELETING",
  "softwareDeploymentStateId" : null,
  "provider" : "AWS",
  "region" : "us-east-1",
  "hostSize" : "small",
  "attributes" : [ ],
  "registration" : null,
  "_links" : {
    "host" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7f244533-2066-4294-9cde-72de68298f4d"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/0a2bbde2-926e-4677-af40-bbbb0e7a2edd",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4c0dadfc-d950-4af4-8d51-1f9b4e34beab",
      "title" : "er-test-2605"
    }
  }
}

Edge Router Policies

Find Edge Router Policies

GET /v2/edge-router-policies

Authorization

This endpoint requires read action on the edge-router-policy resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

zitiId

String

true

name

String

true

isSystem

Boolean

true

semantic

String

true

Must be one of [AllOf, AnyOf].

endpointAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

exclusiveType

String

true

Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy].

exclusiveToId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ2d1RWVUk4R0gxcjZmXzVtNV8zOS1RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImFhYWU0ZmU3LTBiMGYtNGY0My1hZDMxLTk0ZWY5YzE3OWU2NCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY1MTdkYWI3LWJkMmItNGJjZC1iMTgwLTg4MzBjYTcwNzljNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.arY2niCkGV_GDcw8ezh09amZdKdvRrbHgFzeGSViXm85dCLTBJL2QHcL3nOGRKY-OIWMmLSlkGxKCjIwLyAQASBNIhNMgYHrFFDNtUu2DJgFIqqIMIgRd4_I1R_HJr6OliQOhmSKpzm9PHjAx2rMyIA11A2BiW9pFzRIjoYiKnD0d_dr94h4DFL6vscjyjKljxl_DxW3x9eYdPnM-5T-UWV5lOBcCRIYJjWpp6CR2X2EFzhiKNa3AJtqm5kVCvZhbcdT1fAUOe59tPW6Ml6SKpy7q8FhKJeRbKeaYUHb1BtNbpcEsgQijWy6j_f-JihuSZgymyPNcy8GXEnh023DTw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1379

{
  "_embedded" : {
    "edgeRouterPolicyList" : [ {
      "id" : "6fb8a834-5ec3-4ed0-beb9-a54032ed7a26",
      "networkId" : "81f10427-80d2-4d22-94e9-40c14cbbf824",
      "zitiId" : "1e0e78de-3de2-4b39-aa4d-de3d63faa3c4",
      "name" : "6YurAjdyz06AzLrYokrFu",
      "isSystem" : false,
      "semantic" : "AnyOf",
      "endpointAttributes" : [ ],
      "edgeRouterAttributes" : [ ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "e2e24aa3-3d57-47f4-a931-ca0043a023de",
      "createdBy" : "e2e24aa3-3d57-47f4-a931-ca0043a023de",
      "createdAt" : "2024-04-09T16:14:50.774851Z",
      "updatedAt" : "2024-04-09T16:14:50.774851Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/6fb8a834-5ec3-4ed0-beb9-a54032ed7a26",
          "title" : "6YurAjdyz06AzLrYokrFu"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/81f10427-80d2-4d22-94e9-40c14cbbf824",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Edge Router Policy

GET /v2/edge-router-policies/{id}

Authorization

This endpoint requires read action on the edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/4e7d97f7-4848-4612-ac9e-5af2dfaef10d' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJMUlQtWUNWSWhITHVFSmdKOWhCNVhnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA5YjhlZGE2LTA3NWEtNDI4OC05NjZiLTBmMWI2MjAyMGViMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjExNzg3MDIzLTliMDMtNDY2Yi1hYjE2LWJmODM4ZGM1NDdjZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.o658DbmwGz20moPcLcNuideV9GAE1zqMbdpmk1HSsRmESWewAwMkYArtyg-B3ILPQaXjk9369TK9Ry-z8F3D6K8qxZs1CivJ6XGqiz8cfJ_Ivp_LM7JLHmdKAzjtYpcySwym9_o1X6ZVeXI4z9zK3z2pmm9zm_1gs8iUP2y_GVFhHkkxRPhP4W6Jypc-BVnd9JAjQ-pd3hzKAdFaa-C77tgp6eU1WQ5lTng-uhylkT9k_dCRrxygSEZwKJl4U139ukO6Kq3fq2Biwm9cFFtmzBQy-4Z19G2teKRlRWZyiWWRGyHD6RC1vE8RhzjGBTv06PSYjFHCnzMSgLaDR1Higg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 957

{
  "id" : "4e7d97f7-4848-4612-ac9e-5af2dfaef10d",
  "networkId" : "261e81ca-dbfc-40c4-beb0-055cd61f774c",
  "zitiId" : "3dc49dec-8ac7-48bf-8533-37c4360eba9a",
  "name" : "erp-1694",
  "isSystem" : false,
  "semantic" : "AnyOf",
  "endpointAttributes" : [ ],
  "edgeRouterAttributes" : [ ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "b122b0de-0b24-432f-b39f-b10869751751",
  "createdBy" : "b122b0de-0b24-432f-b39f-b10869751751",
  "createdAt" : "2024-04-09T16:14:50.959045Z",
  "updatedAt" : "2024-04-09T16:14:50.959045Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/4e7d97f7-4848-4612-ac9e-5af2dfaef10d",
      "title" : "erp-1694"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/261e81ca-dbfc-40c4-beb0-055cd61f774c",
      "profile" : "parent"
    }
  }
}

Create Edge Router Policy

POST /v2/edge-router-policies

Authorization

This endpoint requires create action on the edge-router-policy resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

networkId

String

true

semantic

String

true

Must be one of [AllOf, AnyOf].

endpointAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ1LVRrSW5rM3VnekwxZzlYa3RJSjFnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYyNmViNzMxLWIwM2YtNDNlNC1hZGM0LWU2MTVjMjBkMGQ3MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNiYTZkZmE1LTM3MjUtNDdhMy04NTRmLWVmMDBkYTk2ZDM2ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HYGhuoxUJR5QLULY8GHQTcjsfo4JbzlQgZcu91MrwKQggXjDLy-6NHsAeT38zFdjo35R3HDUfvQZzD19uYCjxvVdUdeUfycMI65hOhz2dRojfJBw0YQsQa_E9_FwbmjZedoeiEo8KBOn6s5gE2q4xy0JBOvbksVLrLaFWt6Sy-MwLs6zbYVX9RiOHqYJEDMXHegAcIa-0wk4zvDi0YzUYX7B4sTFSkgkj0RAxXTEQj7s4t-khJ2t7QIZbHfHdTL2fAy9SNw7s0cUBcPqmoXjRKulOpirrdS5bMtKrL0hNtjmYDKeufuaiBvJ_SaQFzWKbYaLKkZQSq2yWmlGB7JM_g' \
    -d '{"name":"Test edge router policy 1712679290","networkId":"5ba16807-04fa-4ff9-a1c8-9aab1dfb9fc1","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1228

{
  "id" : "69f9ddf7-23bb-4c8b-a400-23798d50b770",
  "networkId" : "5ba16807-04fa-4ff9-a1c8-9aab1dfb9fc1",
  "zitiId" : "ziti.id.64uhgap3",
  "name" : "Test edge router policy 1712679290",
  "isSystem" : false,
  "semantic" : "AnyOf",
  "endpointAttributes" : [ "#topclients" ],
  "edgeRouterAttributes" : [ "#westrouters" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "626eb731-b03f-43e4-adc4-e615c20d0d73",
  "createdBy" : "626eb731-b03f-43e4-adc4-e615c20d0d73",
  "createdAt" : "2024-04-09T16:14:50.887338Z",
  "updatedAt" : "2024-04-09T16:14:50.912574Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/69f9ddf7-23bb-4c8b-a400-23798d50b770",
      "title" : "Test edge router policy 1712679290"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/5ba16807-04fa-4ff9-a1c8-9aab1dfb9fc1",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/4db4b2a4-e8ab-4aaa-b4a3-81b7eb1a6a26",
      "title" : "Create EdgeRouterPolicy",
      "profile" : "meta"
    }
  }
}

Update Edge Router Policy

PUT /v2/edge-router-policies/{id}

Authorization

This endpoint requires update action on the edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

semantic

String

true

Must be one of [AllOf, AnyOf].

endpointAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/87301ace-70c0-4adb-97d0-0584aeee131b' -i -X PUT \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJuYXlrWDR3QTE2cFhlaXhmVEtPZWtRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjBiZjYzNzEyLTMwMTAtNGQ3NS05MmFmLWUzZTQ4NDUxMzczYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjU1MDE1OTAxLWQ4NWUtNDMxYS1iMTM3LTA0ZDViOWM0NDBkYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.XKsLu1CLaoxP0y44V6zK4Iezh7OfD7RvJ5DW6Ceau-KxUo81CKraDI8-Kk8ztGiybZS2aor1dTQyP7ZnMJrN_jFcid6wlOMb0U0nb6z4pJUZCthsW1C09hHXae56Hk6jI4TOOKCtKDSuscqzdzIDAG9rmKVFxcuyK3NHgoWq7778_Maf1r1PenWgxZ4fNfQXRnEouZWijx_8-UI_E794oESZ0XpCVIboSdAMz0wE6VnQQPT41baepy3NHqqCB000ORKkLKZTii1voNihfTv-Fxkxc0oRNbnd_Cd0mqvy2BQDlD40H3NDSU_hxHKbRtIyI1htLuTxlPA42joIWXI4bg' \
    -d '{"name":"Updated edge router policy name","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1222

{
  "id" : "87301ace-70c0-4adb-97d0-0584aeee131b",
  "networkId" : "bcdacbfa-5bb7-4e8a-8526-b95731dfb0af",
  "zitiId" : "ziti.id.651zczj5",
  "name" : "Updated edge router policy name",
  "isSystem" : false,
  "semantic" : "AnyOf",
  "endpointAttributes" : [ "#topclients" ],
  "edgeRouterAttributes" : [ "#westrouters" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "633a76a5-53ba-4fa2-b80f-e753f04083dc",
  "createdBy" : "633a76a5-53ba-4fa2-b80f-e753f04083dc",
  "createdAt" : "2024-04-09T16:14:51.342248Z",
  "updatedAt" : "2024-04-09T16:14:51.394406Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/87301ace-70c0-4adb-97d0-0584aeee131b",
      "title" : "Updated edge router policy name"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/bcdacbfa-5bb7-4e8a-8526-b95731dfb0af",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/ec00d276-1969-41d8-afac-7dfee16292b7",
      "title" : "Update EdgeRouterPolicy",
      "profile" : "meta"
    }
  }
}

Delete Edge Router Policy

DELETE /v2/edge-router-policies/{id}

Authorization

This endpoint requires delete action on the edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/40a9aea1-1293-4df2-9fef-abbebf67734d' -i -X DELETE \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3c3Mta21abkE5MlNmaHk4dHFfMVhRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYwODA4YzQxLWVjZGYtNGM4Yy04MmI0LWU5OTRhN2IyMTcyNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk4ODQ2OWM3LTJhNDUtNGViZC1hMTRjLWY1ZWRkZmMyZTQ2MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.AdTYa4PJD66Uk648QdhAD6_S58X09kdNDVbFQoNSUWF8zIhUJxmr586yfBQYor1QBROMgB-5cySdKD4yGUM3Wo6VmspfZo7RJ0-2q2YnMc3yBTC5HY1QPBwrDJgxd4UZ7m_6Mj8zy47PgxMEI5vn3nbFHqqedwxLBgOEAjXBTXmIWw8iwVJ0QZYoeV1hY-ryYp0RA4ZApJshdArABnkiVIfvvEpcSy-98ew8Cud7FPY6fZLg5olAbTjIQXcHQyljqEEVfcXpyisDy0k27WzTYpCw22rwBmmSb8DXozRT_8Ch1GhMQEMmLsTKMAuWdvNY0x5LVTjMwEKjZjGj23hFeQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1255

{
  "id" : "40a9aea1-1293-4df2-9fef-abbebf67734d",
  "networkId" : "23fd715c-9a65-43d2-9fac-2f67c6ee19a6",
  "zitiId" : "ziti.id.64z3zwh7",
  "name" : "Test edge router policy 1712679291",
  "isSystem" : false,
  "semantic" : "AnyOf",
  "endpointAttributes" : [ ],
  "edgeRouterAttributes" : [ ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "c6943e34-7f56-4266-bdf5-2539c873047b",
  "createdBy" : "c6943e34-7f56-4266-bdf5-2539c873047b",
  "createdAt" : "2024-04-09T16:14:51.160874Z",
  "updatedAt" : "2024-04-09T16:14:51.236587Z",
  "deletedBy" : "60808c41-ecdf-4c8c-82b4-e994a7b21727",
  "deletedAt" : "2024-04-09T16:14:51.236Z",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/40a9aea1-1293-4df2-9fef-abbebf67734d",
      "title" : "Test edge router policy 1712679291"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/23fd715c-9a65-43d2-9fac-2f67c6ee19a6",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/031717da-87f2-48a5-9cd6-1bdd55870ff4",
      "title" : "Delete EdgeRouterPolicy",
      "profile" : "meta"
    }
  }
}

Find Edge Router Policies

GET /v2/edge-router-policies

Authorization

This endpoint requires read action on the edge-router-policy resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

zitiId

String

true

name

String

true

isSystem

Boolean

true

semantic

String

true

Must be one of [AllOf, AnyOf].

endpointAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

exclusiveType

String

true

Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy].

exclusiveToId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxcVd2UGVNQ21tUW8yalRhTkgwRWlRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijk2ZjQyNmM3LTFlNjEtNDcyYy04OWJmLTVmNThmNTU0MDU2NiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE3MywiZXhwIjoxNzEyNjgyNzczLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVmMGQxZTExLWRjNjgtNDg1My04YjJiLWI3MzIxZmVlZTVmMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HZ1VwTtUEBKoNWMXifslG3-5xKBz-tyivDMjMsDCb1h0XDOQ4sAbgIWRFX91qYEXrZRnrTSGTSxttOG_0UNcXcL2Gmrswu4IdIQemh7b8ytCFK5C22Dxrm74Zn4s2C7xeE-1TUwlZVt-c18eFKRnHddM4eMfr0AjiGmphVeCNujnFqz0VhsVI6fS5TPaHLxF2j_sKGYV0dTkWNROeYZwhqbIGRnMJyWzVsE4KbwO4L62wvHEKwxlCifuDsBtuGfpakG7hQT7RLmlURcKjZKz8PS3VQoxdMPerG2ONnwUCK1PieGZWl8kfRa7Rx717mkDKLA2cRFOsWUjQFww7knE1A'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2585

{
  "_embedded" : {
    "edgeRouterPolicyList" : [ {
      "id" : "479c5da5-f308-4ec2-9a8e-6859ca567f1c",
      "networkId" : "1c959204-122d-4ac1-9121-1902237bdd66",
      "zitiId" : "bfac89eb-1c78-46b6-9c0d-7d8752d52903",
      "name" : "Find Test Edge Router Policy 1",
      "isSystem" : false,
      "semantic" : "AnyOf",
      "endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
      "edgeRouterAttributes" : [ "#erAttr2", "#erAttr1" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "c6b044d0-012b-4522-85bf-94e1741b8a49",
      "createdBy" : "c6b044d0-012b-4522-85bf-94e1741b8a49",
      "createdAt" : "2024-04-09T16:12:53.491379Z",
      "updatedAt" : "2024-04-09T16:12:53.491379Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c959204-122d-4ac1-9121-1902237bdd66",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/479c5da5-f308-4ec2-9a8e-6859ca567f1c",
          "title" : "Find Test Edge Router Policy 1"
        }
      }
    }, {
      "id" : "4e92c180-8b43-4fcc-b041-c697ad9d0ae3",
      "networkId" : "1c959204-122d-4ac1-9121-1902237bdd66",
      "zitiId" : "2326cbdf-f02c-4c07-b18d-563001efacdc",
      "name" : "Find Test Edge Router Policy 2",
      "isSystem" : true,
      "semantic" : "AllOf",
      "endpointAttributes" : [ "#epAttr1", "#attr3" ],
      "edgeRouterAttributes" : [ "#erAttr1" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "c6b044d0-012b-4522-85bf-94e1741b8a49",
      "createdBy" : "c6b044d0-012b-4522-85bf-94e1741b8a49",
      "createdAt" : "2024-04-09T16:12:53.503823Z",
      "updatedAt" : "2024-04-09T16:12:53.503823Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/1c959204-122d-4ac1-9121-1902237bdd66",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/4e92c180-8b43-4fcc-b041-c697ad9d0ae3",
          "title" : "Find Test Edge Router Policy 2"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Services

Find Services

GET /v2/services

Authorization

This endpoint requires read action on the service resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/services?config.addressAndPortIndex%5Bingress%5D=foo.bar.com%7C%5B80--80%5D' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJTYVhrOTBFMndoZTVlQVc5d1VLUlZRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjU0NGE1NDhiLWNkY2MtNDUyNS04YWM1LTQxZmVlZTI0YTEyNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1NywiZXhwIjoxNzEyNjgyODU3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjkyYTM4ZjlkLTAwODctNGQ3Ni05ZDhlLWEwNzhiMDk0NWY4M1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YGQccfl5eCNmS7zlR5kCTRGp9zkainHLicarMlVYDzVrnqFxmdrM_LY2Snu1FJqX3BkGLQtX3x8nEudD6K6UYowMTJquVoFbKkbXECNb7vY3eKbHwBsymepJg9C9ZcwRKS3BJ7RF3VsQq24pqgWg3X2CvOTucKDtax2xYZdLaHSR3B-1mLcIDx3OFRkNFBwB9uC_WQp9Hh_VHU3QKuTXeTFhWfgbcaMwA9S6EwaPjzg_XqZyRdjzWb3uV3hFTkHKR3w2EexrIkSUoO1CwPD1WuX4k9M8SShBlDURwJgYjVIswL75BVwguRRPr9Bo504GsqikkFL6GfA4NkDKNy_TaA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 283

{
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services?config.addressAndPortIndex%5Bingress%5D=foo.bar.com%7C%5B80--80%5D"
    }
  },
  "page" : {
    "size" : 0,
    "totalElements" : 0,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Service

GET /v2/services/{id}

Authorization

This endpoint requires read action on the service resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJadF9Ka1hkdl9uZ25TSDNwQ1EzRElBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjY3MjAyOTljLTk0MDctNGIxZC1hNzE1LTlhZmRlNjdhMDY3ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5NSwiZXhwIjoxNzEyNjgyODk1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjVkY2EyNmE3LWYyMGUtNGJhZi05MDA3LTJmY2RiMDY2NDAwYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.aOpi_movqj8sky2SnAAMwCKU77W1r7l8cB0fHRd8ikkadS8zMjN7bZdzlRT9iA6uaIFlnAqCsQlI85KloSwbWXp_hZ8F2mkeNUxPBeGJ38nRN8FaopJXTDSuU9HmoYQ9o2iwILDTmXFkaEus8oL7oN_cIHf41obXp3ECZ_e8EnHO8bqg-Dqz9GXueXyg8EKJYOEwPfdl644thyk6GYePS19PW2wPGqGG0O4fB0qdDJmHcxygOU2Pvmd_FuRuwyAX0JCt4Smt3vzzPoW-ta1cIPb0ASmGfBr08yQrlSfdHn91S28_zIBQC3NACcw0Vw3LwT6kRVWyB9TeZJXU83gu9g'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2163

{
  "id" : "6595fdb3-ee67-425f-a785-2945a6f59bdc",
  "networkId" : "6703eed3-b4de-4fde-9860-16ba7db94568",
  "zitiId" : "ziti.id.66kvlgpk",
  "name" : "My Service 653m5wda",
  "encryptionRequired" : true,
  "attributes" : [ "#Attr-1", "#Attr-2" ],
  "modelType" : "AdvancedTunnelerToEndpoint",
  "ownerIdentityId" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdBy" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdAt" : "2024-04-09T16:14:54.644169Z",
  "updatedAt" : "2024-04-09T16:14:54.683671Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "configIdByConfigTypeId" : {
    "8e5e618d-95d5-4766-aff5-d5a0c54695e2" : "d650d25f-a8de-43fa-a214-e77d4e2eadc8",
    "f2127f6e-a6cc-4762-96c6-fe8d4d6445a4" : "f5795527-9f75-4d45-aea1-1b1f3e018106"
  },
  "model" : {
    "clientIngress" : {
      "protocols" : [ "tcp", "udp" ],
      "addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
      "ports" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "serverEgress" : {
      "forwardProtocol" : true,
      "allowedProtocols" : [ "udp", "tcp" ],
      "forwardHost" : true,
      "allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
      "forwardPort" : true,
      "allowedPortRanges" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "sourceIpConfigType" : "Transparency",
    "sourceIpConfig" : {
      "allowedSourceAddresses" : [ "192.168.0.0/16", "10.10.0.0/24" ]
    },
    "bindEndpointAttributes" : [ "#east-pop" ],
    "edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc",
      "title" : "My Service 653m5wda"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6703eed3-b4de-4fde-9860-16ba7db94568",
      "profile" : "parent"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=d650d25f-a8de-43fa-a214-e77d4e2eadc8,f5795527-9f75-4d45-aea1-1b1f3e018106"
    }
  }
}

Create Service

POST /v2/services

Authorization

This endpoint requires create action on the service resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

encryptionRequired

Boolean

true

configIds

Array[Object]

true

configNames

Array[String]

true

configs

Array[Object]

true

configs[].networkId

String

true

configs[].name

String

true

configs[].configTypeId

String

true

configs[].configTypeName

String

true

configs[].configType

Object

true

configs[].configType.networkId

String

true

configs[].configType.name

String

true

configs[].configType.schema

Object

true

configs[].data

Object

true

attributes

Array[String]

true

modelType

String

true

Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH].

model

Object

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/services' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJHMGxiY2lhcTc2N0hmcG5HbGJaUnJ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMzODNmYTFjLWIzN2ItNGExZS04YzNjLWJiMTNkZTg5YWFlOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5NCwiZXhwIjoxNzEyNjgyODk0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFkYzZmNzE1LTFmM2UtNDg1OC04ZDhhLTU4MjYyN2UyN2ZhNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BeMCA6ltEe-1gtIEQuKQRxlHS8GZoqT0usthof9Yj2VbyI3xRyUIombr2yTZR08U6XJ1Ge7TuiB0i3gKgvKS0xjXsFOh92J5i8F6hbvRi5OKZrhmlzmYMr5gmL79FzU6bbMWK-KeFTjjvqGutHDkhjsM1x0-awv8AhFptGJAW8WkFIhrdf9ZeFnTyS6SEqrb82z5gNXztUejnzeyPSDYNhVdTbZvZSb3bL6PH9FyHPh_P3sFF_mjr-fif6j7pnATkMsKTaDC8bokIhRmxQC1NMarFzs2td_iZpoeauUSNk6Ld4luqGhwlE9pSNyTk1lzzndy1mtz84FoLwmQjhWUVQ' \
    -d '{"networkId":"6703eed3-b4de-4fde-9860-16ba7db94568","name":"My Service 653m5wda","encryptionRequired":true,"attributes":["#Attr-1","#Attr-2"],"modelType":"AdvancedTunnelerToEndpoint","model":{"clientIngress":{"protocols":["tcp","udp"],"addresses":["10.10.0.0/16","aaabbb.com"],"ports":[{"low":500,"high":549},{"low":8080,"high":8080}]},"serverEgress":{"forwardProtocol":true,"allowedProtocols":["tcp","udp"],"forwardHost":true,"allowedHosts":["10.10.0.0/16","aaabbb.com"],"forwardPort":true,"allowedPortRanges":[{"low":500,"high":549},{"low":8080,"high":8080}]},"sourceIpConfigType":"Transparency","sourceIpConfig":{"allowedSourceAddresses":["192.168.0.0/16","10.10.0.0/24"]},"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1630

{
  "id" : "6595fdb3-ee67-425f-a785-2945a6f59bdc",
  "networkId" : "6703eed3-b4de-4fde-9860-16ba7db94568",
  "zitiId" : "ziti.id.66kvlgpk",
  "name" : "My Service 653m5wda",
  "encryptionRequired" : true,
  "attributes" : [ "#Attr-1", "#Attr-2" ],
  "modelType" : "AdvancedTunnelerToEndpoint",
  "ownerIdentityId" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdBy" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdAt" : "2024-04-09T16:14:54.644169Z",
  "updatedAt" : "2024-04-09T16:14:54.683671Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "configIdByConfigTypeId" : {
    "8e5e618d-95d5-4766-aff5-d5a0c54695e2" : "d650d25f-a8de-43fa-a214-e77d4e2eadc8",
    "f2127f6e-a6cc-4762-96c6-fe8d4d6445a4" : "f5795527-9f75-4d45-aea1-1b1f3e018106"
  },
  "model" : {
    "clientIngress" : {
      "protocols" : [ "tcp", "udp" ],
      "addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
      "ports" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "serverEgress" : {
      "forwardProtocol" : true,
      "allowedProtocols" : [ "udp", "tcp" ],
      "forwardHost" : true,
      "allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
      "forwardPort" : true,
      "allowedPortRanges" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "sourceIpConfigType" : "Transparency",
    "sourceIpConfig" : {
      "allowedSourceAddresses" : [ "192.168.0.0/16", "10.10.0.0/24" ]
    },
    "bindEndpointAttributes" : [ "#east-pop" ],
    "edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
  }
}

Update Service

PATCH /v2/services/{id}

Authorization

This endpoint requires update action on the service resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

configIds

Array[Object]

true

configNames

Array[String]

true

updateExclusiveConfigs

Map

true

createExclusiveConfigs

Array[Object]

true

createExclusiveConfigs[].networkId

String

true

createExclusiveConfigs[].name

String

true

createExclusiveConfigs[].configTypeId

String

true

createExclusiveConfigs[].configTypeName

String

true

createExclusiveConfigs[].configType

Object

true

createExclusiveConfigs[].configType.networkId

String

true

createExclusiveConfigs[].configType.name

String

true

createExclusiveConfigs[].configType.schema

Object

true

createExclusiveConfigs[].data

Object

true

attributes

Array[String]

true

modelType

String

true

Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH].

model

Object

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6M2tzenBjTF9Pa1J5SG1paEI2aTVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYzYWM3MmE5LWJiMDAtNDE3Ni1iZTVhLTIzMDRhMjlhODM5YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5NywiZXhwIjoxNzEyNjgyODk3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhlOTRjNTE5LTM2ZjQtNDM4MC05YWFkLWY3YWI4M2QyMDFmY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.eTZOx7IF3Nue6LMYEAA5g9tqfnrNcOaBS9HV1hmfKycCk-Ub5ntmu5H0BAwK2LGGeq8ggH7WN8ugezUhfxxCqmgF_pM6fDPNQIYs1kBYyC4wvPl2qjJcK2IwCzhoFSMmXSac-mSDEoFTVT6S_P510wa6fEQMFHhECr32x6K-hvH2bigM62vZKg9cMglQ7z_Gm9Vqrj1xK-vA2_0pE6vvkrdE7JwhCqPcG4-eI68af3CZfNDZIgxKfydcW_bzwCMyzNn6KaHtfJ4pT-0ektfYTqZ88IRzLpcyp-KFffSLpWtuOqfNrPUCAeszsOfiGrSIw77PWQoBuw1WgzRQk80e3g' \
    -d '{"name":"Our Service 653m5wda","attributes":["#Attr-4","#Attr-2"],"modelType":"AdvancedTunnelerToEndpoint","model":{"clientIngress":{"protocols":["tcp","udp"],"addresses":["10.10.0.0/16","aaabbb.com"],"ports":[{"low":500,"high":549},{"low":8080,"high":8080}]},"serverEgress":{"forwardProtocol":true,"allowedProtocols":["tcp","udp"],"forwardHost":true,"allowedHosts":["10.10.0.0/16","aaabbb.com"],"forwardPort":true,"allowedPortRanges":[{"low":500,"high":549},{"low":8080,"high":8080}]},"sourceIpConfigType":"Transparency","sourceIpConfig":{"allowedSourceAddresses":["192.168.0.0/16","10.10.0.0/24"]},"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 2165

{
  "id" : "6595fdb3-ee67-425f-a785-2945a6f59bdc",
  "networkId" : "6703eed3-b4de-4fde-9860-16ba7db94568",
  "zitiId" : "ziti.id.66kvlgpk",
  "name" : "Our Service 653m5wda",
  "encryptionRequired" : true,
  "attributes" : [ "#Attr-4", "#Attr-2" ],
  "modelType" : "AdvancedTunnelerToEndpoint",
  "ownerIdentityId" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdBy" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdAt" : "2024-04-09T16:14:54.644169Z",
  "updatedAt" : "2024-04-09T16:14:58.024482Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "configIdByConfigTypeId" : {
    "8e5e618d-95d5-4766-aff5-d5a0c54695e2" : "30362c8e-064a-4bbf-9517-d7a85a93937a",
    "f2127f6e-a6cc-4762-96c6-fe8d4d6445a4" : "199d0714-8128-490c-b158-455b3d7568c3"
  },
  "model" : {
    "clientIngress" : {
      "protocols" : [ "tcp", "udp" ],
      "addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
      "ports" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "serverEgress" : {
      "forwardProtocol" : true,
      "allowedProtocols" : [ "udp", "tcp" ],
      "forwardHost" : true,
      "allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
      "forwardPort" : true,
      "allowedPortRanges" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "sourceIpConfigType" : "Transparency",
    "sourceIpConfig" : {
      "allowedSourceAddresses" : [ "192.168.0.0/16", "10.10.0.0/24" ]
    },
    "bindEndpointAttributes" : [ "#east-pop" ],
    "edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc",
      "title" : "Our Service 653m5wda"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6703eed3-b4de-4fde-9860-16ba7db94568",
      "profile" : "parent"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=30362c8e-064a-4bbf-9517-d7a85a93937a,199d0714-8128-490c-b158-455b3d7568c3"
    }
  }
}

Delete Service

DELETE /v2/services/{id}

Authorization

This endpoint requires delete action on the service resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWSlRYc0xsY0R4WHQzb05DNnpDREpRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU5ZDcwMmNlLTVhNmYtNDY3NS1iODhlLTI0ZWMzOTY2ZWNhZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5OSwiZXhwIjoxNzEyNjgyODk5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNkNjMwMGNmLWVmYzYtNDE0ZC1iYTdkLTM2NzZlMDBlYWU2M1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.AuDBGWe2mpjiAky72O4ZXcuA8EjEeU37v__61Fzh4mIFYMx9-anMrA0VlTRgTni_zKNTc1kasRRgK4y0fwi_pqDleo36qA5p45D70IFe_q7dczxWS8ErRwdwQBGCFVllaiYEe1rDCLDkmzdS6kVz2XVkdBmm7G9yVpNcHYml7Q62BWwBhgQoH82Y8tJCvW1fQH9rnRWwYKed0-KoAST1qXoosupkVabvg2foiOKYzplsZdGxJH9_PAU2WlK8dMFncD0SUW_y-bLnJaSL5Qdl3xSgQHTpoDslk11jlLa-pqP4pP-FPMKI0yrxU2oyBKrb5K4wIpHPZLO3IIn2JRjwWA'

Example response

HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 2153

{
  "id" : "6595fdb3-ee67-425f-a785-2945a6f59bdc",
  "networkId" : "6703eed3-b4de-4fde-9860-16ba7db94568",
  "zitiId" : null,
  "name" : "Our Service 653m5wda",
  "encryptionRequired" : true,
  "attributes" : [ ],
  "modelType" : "AdvancedTunnelerToEndpoint",
  "ownerIdentityId" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdBy" : "c383fa1c-b37b-4a1e-8c3c-bb13de89aae8",
  "createdAt" : "2024-04-09T16:14:54.644169Z",
  "updatedAt" : "2024-04-09T16:14:59.231652Z",
  "deletedBy" : "e9d702ce-5a6f-4675-b88e-24ec3966ecad",
  "deletedAt" : "2024-04-09T16:14:59.223Z",
  "configIdByConfigTypeId" : {
    "8e5e618d-95d5-4766-aff5-d5a0c54695e2" : "30362c8e-064a-4bbf-9517-d7a85a93937a",
    "f2127f6e-a6cc-4762-96c6-fe8d4d6445a4" : "199d0714-8128-490c-b158-455b3d7568c3"
  },
  "model" : {
    "clientIngress" : {
      "protocols" : [ "tcp", "udp" ],
      "addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
      "ports" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "serverEgress" : {
      "forwardProtocol" : true,
      "allowedProtocols" : [ "udp", "tcp" ],
      "forwardHost" : true,
      "allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
      "forwardPort" : true,
      "allowedPortRanges" : [ {
        "low" : 500,
        "high" : 549
      }, {
        "low" : 8080,
        "high" : 8080
      } ]
    },
    "sourceIpConfigType" : "Transparency",
    "sourceIpConfig" : {
      "allowedSourceAddresses" : [ "192.168.0.0/16", "10.10.0.0/24" ]
    },
    "bindEndpointAttributes" : [ ],
    "edgeRouterAttributes" : [ ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services/6595fdb3-ee67-425f-a785-2945a6f59bdc",
      "title" : "Our Service 653m5wda"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6703eed3-b4de-4fde-9860-16ba7db94568",
      "profile" : "parent"
    },
    "configs" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=30362c8e-064a-4bbf-9517-d7a85a93937a,199d0714-8128-490c-b158-455b3d7568c3"
    }
  }
}

App Wans

Find App Wans

GET /v2/app-wans

Authorization

This endpoint requires read action on the app-wan resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

name

String

true

zitiId

String

true

networkId

String

true

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

interceptConflicts

Array[Object]

true

interceptConflicts[].fromServiceId

String

true

interceptConflicts[].fromServiceName

String

true

interceptConflicts[].toServiceId

String

true

interceptConflicts[].toServiceName

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJXN2JsS1RYUHhLS2JldFI5aWhsWjZBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI1ZTY3YjljLTgyM2QtNDNiNy1iMTZiLTFlMjQ0ZDM4NzRjMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI0MSwiZXhwIjoxNzEyNjgyODQxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRiZTcxMmQxLTVmOWMtNGVmMC1hNzZhLWYwOGJiNGQwMmFiOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI0MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ERSXX33V3On1Sh_cgXF0pZeH7djkkY4nIu70ox3hDgkfRNFXH4dBK5iODsKXcYzok6qVnWKuncIUYHJiXBLjvhR5hlie7R9CrLrkCE_dSOacfv14otkYy9zab0A6l0ylm6vJteN9tk2pyQ3RSkPEzkkSpxIhPxmMtNvA7oqOsH3HK7cjCxarMlKS4EggVGbXZ6MKgaa-LsIKj2TGpfOxESZoBonsTZwCh1cYG6byWnbdWNSCE3a0xmh3WEOVDDd-bfh6UjiyaOWMloNFelYzBORJzR0vmtw_3rE5c5cr0FB_LOO4ewCoJgyfCxIouDyk6a_7SvUzdGdjPmPLY5LZ5w'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 6502

{
  "_embedded" : {
    "appWanList" : [ {
      "id" : "0c872b54-0260-4076-946b-4919d60f1ac7",
      "ownerIdentityId" : "30d206c7-1249-4e15-889a-0dc498b0cd81",
      "createdBy" : "30d206c7-1249-4e15-889a-0dc498b0cd81",
      "createdAt" : "2024-04-09T16:14:01.162593Z",
      "updatedAt" : "2024-04-09T16:14:01.163390Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "appwan-565",
      "zitiId" : "3b797cb6-275a-412c-9de1-2bd5715c7f99",
      "networkId" : "114ca8f9-761f-4464-b5ac-1b3bd9313ded",
      "serviceAttributes" : [ ],
      "endpointAttributes" : [ ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/114ca8f9-761f-4464-b5ac-1b3bd9313ded",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/0c872b54-0260-4076-946b-4919d60f1ac7",
          "title" : "appwan-565"
        }
      }
    }, {
      "id" : "423903ad-aeb0-4c83-8348-da0ddec1f329",
      "ownerIdentityId" : "ad99b4d8-d99a-4387-9ef9-c865c3e31a6f",
      "createdBy" : "ad99b4d8-d99a-4387-9ef9-c865c3e31a6f",
      "createdAt" : "2024-04-09T16:14:01.074114Z",
      "updatedAt" : "2024-04-09T16:14:01.074899Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "appwan-556",
      "zitiId" : "783eade2-53f1-41b6-9737-2d34419838b1",
      "networkId" : "61069f34-02dd-4060-a309-579384711cee",
      "serviceAttributes" : [ ],
      "endpointAttributes" : [ ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/61069f34-02dd-4060-a309-579384711cee",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/423903ad-aeb0-4c83-8348-da0ddec1f329",
          "title" : "appwan-556"
        }
      }
    }, {
      "id" : "95b2f5d6-d2d1-43c8-847b-37d6aab0c9cf",
      "ownerIdentityId" : "f182868e-327f-437f-95ee-b0467e6f6257",
      "createdBy" : "f182868e-327f-437f-95ee-b0467e6f6257",
      "createdAt" : "2024-04-09T16:14:01.540406Z",
      "updatedAt" : "2024-04-09T16:14:01.541338Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "appwan-592",
      "zitiId" : "b7d278aa-b633-4187-9e22-ea64b7943476",
      "networkId" : "73c143b3-19ce-474b-908e-c12e03859bda",
      "serviceAttributes" : [ ],
      "endpointAttributes" : [ ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/73c143b3-19ce-474b-908e-c12e03859bda",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/95b2f5d6-d2d1-43c8-847b-37d6aab0c9cf",
          "title" : "appwan-592"
        }
      }
    }, {
      "id" : "acd8c7e0-c555-48b1-a5cb-b3e4492d228d",
      "ownerIdentityId" : "368ff915-e250-4668-8d04-43518b4fe220",
      "createdBy" : "368ff915-e250-4668-8d04-43518b4fe220",
      "createdAt" : "2024-04-09T16:14:00.763078Z",
      "updatedAt" : "2024-04-09T16:14:00.767834Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "appwan-538",
      "zitiId" : "06379664-7165-47ce-a32e-3d70b3e3cae7",
      "networkId" : "9797c86f-7439-4aca-beb4-86757178b3f2",
      "serviceAttributes" : [ ],
      "endpointAttributes" : [ ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/9797c86f-7439-4aca-beb4-86757178b3f2",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/acd8c7e0-c555-48b1-a5cb-b3e4492d228d",
          "title" : "appwan-538"
        }
      }
    }, {
      "id" : "b488d477-69f6-4c17-8398-da2d1d254044",
      "ownerIdentityId" : "ebb0e0a1-d921-4364-82d1-f2fbd49ca21a",
      "createdBy" : "ebb0e0a1-d921-4364-82d1-f2fbd49ca21a",
      "createdAt" : "2024-04-09T16:14:01.417375Z",
      "updatedAt" : "2024-04-09T16:14:01.488282Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "appwan-583",
      "zitiId" : "eefcf239-68d3-4cbb-9c33-96a1874f947c",
      "networkId" : "02693423-aaea-4e81-9472-b1d9ef337a83",
      "serviceAttributes" : [ "#service03", "#service02", "#service01" ],
      "endpointAttributes" : [ "#usendpoints" ],
      "postureCheckAttributes" : [ "#windows" ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/02693423-aaea-4e81-9472-b1d9ef337a83",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b488d477-69f6-4c17-8398-da2d1d254044",
          "title" : "appwan-583"
        }
      }
    }, {
      "id" : "e2e1e9cf-e6c3-4271-8c66-cacf92abe9d5",
      "ownerIdentityId" : "d23b7ab4-15f4-4030-a7c0-6e375480d6c0",
      "createdBy" : "d23b7ab4-15f4-4030-a7c0-6e375480d6c0",
      "createdAt" : "2024-04-09T16:14:01.231220Z",
      "updatedAt" : "2024-04-09T16:14:01.335101Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "Updated App Wan name",
      "zitiId" : "357b560d-f8dd-4550-9c67-666e38963328",
      "networkId" : "7a87f53c-085c-413f-8be0-42773dee8b07",
      "serviceAttributes" : [ "#service03", "#service02", "#service01" ],
      "endpointAttributes" : [ "#usendpoints" ],
      "postureCheckAttributes" : [ "#windows" ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a87f53c-085c-413f-8be0-42773dee8b07",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/e2e1e9cf-e6c3-4271-8c66-cacf92abe9d5",
          "title" : "Updated App Wan name"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 6,
    "totalPages" : 1,
    "number" : 0
  }
}

Get App Wan

GET /v2/app-wans/{id}

Authorization

This endpoint requires read action on the app-wan resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans/d576225d-4b83-4be8-b944-d0b7cbb2f491' -i -X GET \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI0OGMxb19lWDJzSENXU1QwSzRrLUpBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjBlY2RmZjY0LTM4NDQtNGM5Mi1iNWIwLTBhOWRkNDNlZTIyZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI0MSwiZXhwIjoxNzEyNjgyODQxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRkYmUyNTljLTM3MmEtNDkzYy1iMTI0LTMzYjg0YzFjZWE3ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI0MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JsN86J9actiAIxhrjNO6Ew0f4afxu2bW0WMb4kZRrWFTWypSrbAZcRYT1-Jvqu9VRWoYU1tqdel8ecedR5hPBfjBr4mo-lVb-i4m5ndYoOeRIrhZ3Jgmz2P0UuSLy82Ek620Y6HMsPvTTMEQ3-rvCuD80Vs2YfZtiOsWKThMi-w4RzVnH93pWgPXEsa52vnqcCNruHUsq_qtSk0LZ9dBUSnR7du1pQEWSLI1U1dqb72VDLx3ODXeOQ4JqUKKthnFZVDX1-toz-pYRLYriU4XBrn3Lc8gEuoAif_90TK2TNfnkysbZ0aGmbKCr6LdBUBOs5NtL_yG-Z2IpJUc8VjF-A'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 912

{
  "id" : "d576225d-4b83-4be8-b944-d0b7cbb2f491",
  "ownerIdentityId" : "994f9c66-c2fb-45bd-a996-8e46e5c617a0",
  "createdBy" : "994f9c66-c2fb-45bd-a996-8e46e5c617a0",
  "createdAt" : "2024-04-09T16:14:01.651121Z",
  "updatedAt" : "2024-04-09T16:14:01.651898Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "name" : "appwan-601",
  "zitiId" : "9e9f9e3c-391f-4240-97b1-3b198b49683a",
  "networkId" : "ba8bbced-db7d-4ac7-b246-310700ca782d",
  "serviceAttributes" : [ ],
  "endpointAttributes" : [ ],
  "postureCheckAttributes" : [ ],
  "interceptConflicts" : [ ],
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ba8bbced-db7d-4ac7-b246-310700ca782d",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/d576225d-4b83-4be8-b944-d0b7cbb2f491",
      "title" : "appwan-601"
    }
  }
}

Find App Wans

GET /v2/app-wans

Authorization

This endpoint requires read action on the app-wan resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

name

String

true

zitiId

String

true

networkId

String

true

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

interceptConflicts

Array[Object]

true

interceptConflicts[].fromServiceId

String

true

interceptConflicts[].fromServiceName

String

true

interceptConflicts[].toServiceId

String

true

interceptConflicts[].toServiceName

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJTcTZxMmp2c2tZZnJqZFdHYUJtM01RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjU4Y2VjM2ZhLTAzZmEtNGU5Yy04NmQ0LTUyOGEyZmJjNWI0OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI3OCwiZXhwIjoxNzEyNjgyODc4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZmYTlmODlhLTljODUtNGRmOC1iN2YxLTc0MGM2NzE3NmFhN1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI3OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YgBzSMxeBDhdPckN9mAgyJoUVTCENhzj1WCqgAgG7ajt5k3QCad4_En0AojXkT-yy2PtbHxXx1_lXON_kvWfP7CZ56b2_bCzNLQUeXCsnzSrkL2F2RAc0VDqS85c74ZwM9gSZ8_or8uJ8ENqJDGZCYQlCI_je1uFFpDlroarpfG-hNENLF1PfEOwg9pDeYyxmxb-o1ZQxzN6fPefef2lvSKN7OPvS6_id7-3L4lyYafotSwTBFZ5tM6ITns-B-HHdskkg4-kHemp4R22m1qJLjj3WO5dU48VAE4P4qIAaESk5EfbW4bO45ZVRdEHmc5aJAGUe7yUNpTkwiuiXYC8Cw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2404

{
  "_embedded" : {
    "appWanList" : [ {
      "id" : "0d3aeafe-c313-4f86-846b-4d088401f147",
      "ownerIdentityId" : "2b34a2ac-542b-4e4c-9df1-b8ac2e42f495",
      "createdBy" : "2b34a2ac-542b-4e4c-9df1-b8ac2e42f495",
      "createdAt" : "2024-04-09T16:14:38.140723Z",
      "updatedAt" : "2024-04-09T16:14:38.141781Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "Find Test AppWan 2",
      "zitiId" : "daf07959-558f-44ca-9b93-e66674729191",
      "networkId" : "394b77ea-3181-4481-9062-f8803672788c",
      "serviceAttributes" : [ "#seAttr1", "#seAttr3" ],
      "endpointAttributes" : [ "#epAttr1" ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/394b77ea-3181-4481-9062-f8803672788c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/0d3aeafe-c313-4f86-846b-4d088401f147",
          "title" : "Find Test AppWan 2"
        }
      }
    }, {
      "id" : "faa1d877-d338-493d-875e-5bad8c706963",
      "ownerIdentityId" : "2b34a2ac-542b-4e4c-9df1-b8ac2e42f495",
      "createdBy" : "2b34a2ac-542b-4e4c-9df1-b8ac2e42f495",
      "createdAt" : "2024-04-09T16:14:38.137653Z",
      "updatedAt" : "2024-04-09T16:14:38.139438Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "name" : "Find Test AppWan 1",
      "zitiId" : "85ee30de-951a-4f9f-89f8-49eee5a7da2d",
      "networkId" : "394b77ea-3181-4481-9062-f8803672788c",
      "serviceAttributes" : [ "#seAttr1", "#seAttr2" ],
      "endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
      "postureCheckAttributes" : [ ],
      "interceptConflicts" : [ ],
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/394b77ea-3181-4481-9062-f8803672788c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/faa1d877-d338-493d-875e-5bad8c706963",
          "title" : "Find Test AppWan 1"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Create App Wan

POST /v2/app-wans

Authorization

This endpoint requires create action on the app-wan resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJtb2NRRlNWenl5cW5nZVBzVkpUbXJBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijg1ZDU1ZTBhLTdmZGYtNDYwOS1hYmU5LTE0MGUyZWMxNGUyYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI0MSwiZXhwIjoxNzEyNjgyODQxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjlkMjE5ZjkzLWM1MGUtNDYwOS05MGIyLWE2ZmNlMTZmNTk2M1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI0MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.VKwJOinKkSL3p6jUbK3Jww0cNjKQhoIYN_-4g9oatuoqk256xITkKNHEDnQTU4n2fvzn5uJSiGkZzXt8VFfcORV5pysHyeTAVJG0Gj-4Q1wqQ8g-KryRYn2dJr4MMsYmuyIojNYJIyiPhOGS1Ba9969URnbfJtMg9H-N7wJzfl3OqZAwCOsthdDmV5QA-2LRMtMjSHIbf2MOy6jvZBWCpiNzc4ezXOL57gk5Daz89hE6zG1tG5_K_1ToUDyJC4Mjqb7vEFXgMWTOzQJgn13CEZgvKgBr4zkQbnswYFtYwHvzR95oxWMF0GLIwYaVtreqeXgALFPXoGAA0RTW6b_tFA' \
    -d '{"networkId":"6496b143-473b-4199-a53a-b41b5e2cc36f","name":"Test App Wan 1712679241","serviceAttributes":["#service01"],"endpointAttributes":["@endpoint-630","#accessclients"],"postureCheckAttributes":["#windows"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1196

{
  "id" : "b1c3ad9f-a846-4016-9707-5f86b00da4cc",
  "ownerIdentityId" : "85d55e0a-7fdf-4609-abe9-140e2ec14e2b",
  "createdBy" : "85d55e0a-7fdf-4609-abe9-140e2ec14e2b",
  "createdAt" : "2024-04-09T16:14:01.922784Z",
  "updatedAt" : "2024-04-09T16:14:01.928369Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "name" : "Test App Wan 1712679241",
  "zitiId" : "cbb5e1d2-e797-40c8-b689-fcf14320de7d",
  "networkId" : "6496b143-473b-4199-a53a-b41b5e2cc36f",
  "serviceAttributes" : [ "#service01" ],
  "endpointAttributes" : [ "@endpoint-630", "#accessclients" ],
  "postureCheckAttributes" : [ "#windows" ],
  "interceptConflicts" : [ ],
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6496b143-473b-4199-a53a-b41b5e2cc36f",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b1c3ad9f-a846-4016-9707-5f86b00da4cc",
      "title" : "Test App Wan 1712679241"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/be2d878a-e514-4838-9f58-1272f797ad87",
      "title" : "Create AppWan",
      "profile" : "meta"
    }
  }
}

Update App Wan

PUT /v2/app-wans/{id}

Authorization

This endpoint requires update action on the app-wan resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans/e2e1e9cf-e6c3-4271-8c66-cacf92abe9d5' -i -X PUT \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJFUXh1X2d6Q1B3dUdEVTBkdU9rMEt3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA0ZTk4MzYxLTljMmQtNDMzOS04NmJhLWU1OTYwN2M2NDQwZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI0MSwiZXhwIjoxNzEyNjgyODQxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ5YTkwYjQxLTYzZWYtNGU0ZS1hZTc3LTA5NjQ0NDQ4MzAzNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI0MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.KNj7QaPshdThrQQ02PFkxWGzHyP5KUr1vfatNp89sBxFBR-uv2dBqCDj7TGZGb8QEkeHhgbQypRM1wx8VoAPjlpfneYon-cydQZUP1o5uWVsAmx6I4JD7AZ3PunA1eIsosyHLq5aYNFWw47mWA1DQ-RhRvAs4JzMvI8j5fKOIuamARQ-ZfB-MBv_c7QCU9y7E97JQDON7mGPft0sWsA2Qg5am_ZBBBjxoci_haW0KJgTYs-tt_JiZ4NuKXhMxnG9bMTuAaVfTwbrESbRhYZtD3gX9d1SZuauKcCngMtAVC670-9D6qf6MPmIt8zoJffU8WN5R2kJeYiNI2UE0ZjcdQ' \
    -d '{"name":"Updated App Wan name","serviceAttributes":["#service03","#service02","#service01"],"endpointAttributes":["#usendpoints"],"postureCheckAttributes":["#windows"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1199

{
  "id" : "e2e1e9cf-e6c3-4271-8c66-cacf92abe9d5",
  "ownerIdentityId" : "d23b7ab4-15f4-4030-a7c0-6e375480d6c0",
  "createdBy" : "d23b7ab4-15f4-4030-a7c0-6e375480d6c0",
  "createdAt" : "2024-04-09T16:14:01.231220Z",
  "updatedAt" : "2024-04-09T16:14:01.335101Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "name" : "Updated App Wan name",
  "zitiId" : "357b560d-f8dd-4550-9c67-666e38963328",
  "networkId" : "7a87f53c-085c-413f-8be0-42773dee8b07",
  "serviceAttributes" : [ "#service03", "#service02", "#service01" ],
  "endpointAttributes" : [ "#usendpoints" ],
  "postureCheckAttributes" : [ "#windows" ],
  "interceptConflicts" : [ ],
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a87f53c-085c-413f-8be0-42773dee8b07",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/e2e1e9cf-e6c3-4271-8c66-cacf92abe9d5",
      "title" : "Updated App Wan name"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/bccbadf3-984f-4c5a-9755-1e2f24d90b70",
      "title" : "Update AppWan",
      "profile" : "meta"
    }
  }
}

Delete App Wan

DELETE /v2/app-wans/{id}

Authorization

This endpoint requires delete action on the app-wan resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans/a00d4393-bd90-46ff-9822-b4f7af02b52a' -i -X DELETE \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIzVFBXTzlfYzJ2VTR5eDk1aWVsMzlRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImJiZTFlNmZlLWJmZDctNGFjZC1iNWQ4LWY0ZjY3M2Q1Y2ZlMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI0MCwiZXhwIjoxNzEyNjgyODQwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjczMjk1MDUxLTA4YzEtNGMzMC1iODI5LTRmMDZmZjIzZmUxNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI0MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.pvpAovU-j1rJceAfml0CmTLEQ-uFPJEk_RVPlvzEP1joVeG_DrRZrZ99zkm6IJRlYD3NveJmsQhwDDQWRdC0OIxuhjcmxnmFZMahBPblrVTAA9QRvBcfJtJkTDNqCxmdmiiMsyAdHfjukHoy9iY1nCIifHJYspu8BAtGbfGNzPjUJ88zhUM3LA18axzlUkxid9TwzxF01u6D3FUu3xl5VTKHCa5L9bmJQcqaQ7eunSaGLdjVkb8M5C_XPT_9woUOa9nxNOMwGYiSP8V2SdZKGTeXMp0HpxsTCMNBaYqppdL3UlHdxtcjdKGduxT679yu5fSBk1y7nUi62m2rji1Bpw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1134

{
  "id" : "a00d4393-bd90-46ff-9822-b4f7af02b52a",
  "ownerIdentityId" : "bf82bc8b-44da-42a1-bccf-9ac7d0279920",
  "createdBy" : "bf82bc8b-44da-42a1-bccf-9ac7d0279920",
  "createdAt" : "2024-04-09T16:14:00.982702Z",
  "updatedAt" : "2024-04-09T16:14:01.016837Z",
  "deletedBy" : "bbe1e6fe-bfd7-4acd-b5d8-f4f673d5cfe0",
  "deletedAt" : "2024-04-09T16:14:01.006Z",
  "name" : "appwan-547",
  "zitiId" : null,
  "networkId" : "727f1128-aeaf-48f2-9deb-db9653d6a0fa",
  "serviceAttributes" : [ ],
  "endpointAttributes" : [ ],
  "postureCheckAttributes" : [ ],
  "interceptConflicts" : [ ],
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/727f1128-aeaf-48f2-9deb-db9653d6a0fa",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/a00d4393-bd90-46ff-9822-b4f7af02b52a",
      "title" : "appwan-547"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/f9986bb0-799f-43df-aa48-1dce97786c01",
      "title" : "Delete AppWan",
      "profile" : "meta"
    }
  }
}

Posture Checks

Find Posture Checks

GET /v2/posture-checks

Authorization

This endpoint requires read action on the posture-check resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

deleted

Boolean

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

zitiId

String

true

name

String

true

networkId

String

true

type

String

true

Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI].

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

attributes

Array[String]

true

data

Object

true

data.domains

Array[String]

true

data.macAddresses

Array[String]

true

data.timeoutSeconds

Integer

true

data.promptOnWake

Boolean

true

data.promptOnUnlock

Boolean

true

data.ignoreLegacyEndpoints

Boolean

true

data.operatingSystems

Array[Object]

true

data.operatingSystems[].type

String

true

Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer].

data.operatingSystems[].versions

Array[String]

true

data.process

Object

true

data.process.osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.process.path

String

true

data.process.hashes

Array[String]

true

data.process.signerFingerprint

String

true

data.processes

Array[Object]

true

data.processes[].osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.processes[].path

String

true

data.processes[].hashes

Array[String]

true

data.processes[].signerFingerprints

Array[String]

true

data.semantic

String

true

Must be one of [AllOf, AnyOf].

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4TlpOMF8xQ0l2SXNtVmNCaVh0SklBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjE3YWRjZTg0LTgyYWQtNDUzNC04YzUwLWM2MzI3ODRhM2U0MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI2MiwiZXhwIjoxNzEyNjgyODYyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjMzOTVlZmIzLTY3YWItNDBjMy1iZjE2LWM5ZWQ5MzRmZDdjNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI2Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Jxi-okoyacBBIIYh69sReQqr-9idIQ8K0jud3_Eb37NNy3hNsgVwWX8wOvrQ47hWOckisyUNYec1pznSlLl66XeoNzPVYNijTPl0cdcKJVF4vesVQ4BgB-WXAylJ6CSxI-GPw58h2HYh1UV378EjHrIE8pdVteBwJf6EoRUH4XCKX4rvKYES1KHdOycjReWzMCGNqzskA6-E2_38nZOjVGoWvlO8AMsI2UNX62H5fb5HcqGyrrHWxn8l7sGvV1nBzp3JuWgGaX6jFEPE4NDMAS1pN7w509G3HmOiXCmSWNSz2QLB1-5ogaTY_H9pgQhJTiShEvmeCAdNBlMGaFo7jw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2382

{
  "_embedded" : {
    "postureCheckList" : [ {
      "id" : "30210640-a429-4855-a792-d8acfdffc43a",
      "zitiId" : "zitiId-fake-873414e5-6d00-4e38-a89b-04a0f38fd41f",
      "name" : "Find Test Posture Check 1",
      "networkId" : "ec527166-7fc0-488b-965b-23b65a38f9ec",
      "type" : "DOMAIN",
      "ownerIdentityId" : "6b7e50a0-4f09-40e2-ad96-768054c93659",
      "createdBy" : "6b7e50a0-4f09-40e2-ad96-768054c93659",
      "createdAt" : "2024-04-09T16:14:22.684019Z",
      "updatedAt" : "2024-04-09T16:14:22.684019Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "attributes" : [ "#attr2", "#attr1" ],
      "data" : {
        "domains" : [ "abc.com" ]
      },
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec527166-7fc0-488b-965b-23b65a38f9ec",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/30210640-a429-4855-a792-d8acfdffc43a",
          "title" : "Find Test Posture Check 1"
        }
      }
    }, {
      "id" : "ae0825b9-fa7d-4fef-a7f7-88d2924d7211",
      "zitiId" : "zitiId-fake-22f02788-9f03-423f-8466-37fac24e20a9",
      "name" : "Find Test Posture Check 2",
      "networkId" : "ec527166-7fc0-488b-965b-23b65a38f9ec",
      "type" : "DOMAIN",
      "ownerIdentityId" : "6b7e50a0-4f09-40e2-ad96-768054c93659",
      "createdBy" : "6b7e50a0-4f09-40e2-ad96-768054c93659",
      "createdAt" : "2024-04-09T16:14:22.687546Z",
      "updatedAt" : "2024-04-09T16:14:22.687546Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "attributes" : [ "#attr3", "#attr1" ],
      "data" : {
        "domains" : [ "abc.com" ]
      },
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec527166-7fc0-488b-965b-23b65a38f9ec",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/ae0825b9-fa7d-4fef-a7f7-88d2924d7211",
          "title" : "Find Test Posture Check 2"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Posture Check

GET /v2/posture-checks/{id}

Authorization

This endpoint requires read action on the posture-check resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJLMzJ6U0Y3dmhsLTluenJiSHkxc29BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZiYjE4M2RiLWQwY2MtNDg2MS04OTg0LTFkZmFhNWQ3ZDJjMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMywiZXhwIjoxNzEyNjgyOTIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVhM2RlNDEzLTMzYTEtNDM0Ni1hYzIzLTI1NmNmNDM2MzQ2MlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ono3RhRo-Wa0RH0eY4_BrsW1OlVAoiib4SD1Ax-A6YGisx1xSpGPZfQ0BI2iSb_C3WceVoEunW8Hv43FjWI2LY2k4ERdo7YYQbFEQtSUtfFh2IIZsx_D-4r4UvOak1Z83dzBTrINix0v1B2qZ4Dx_hbfnt5FK6A0Pis9N2UZ4K39nsJQg73ld3N2dJvLg4s0DmO0V4G4NC44Y6jtHyGzdc48W64hV1CGCxmwwDH_ckcMIy0n5_DX_CMWv2wU4eY4bu1eqjq_sAUPUzqTMm9eeIzeavrG340M3AGeTPlj2ETxDm2Ifuh4CFrTDNikZoVz1U1CkbHqGdVlXoCYMmFUcQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 937

{
  "id" : "b26dcba6-c18a-4ed7-a71b-ad3e09732550",
  "zitiId" : "ziti.id.6jrf3rca",
  "name" : "My Posture Check 512651098492",
  "networkId" : "b535e04e-8688-40d3-9189-c08b4a311f88",
  "type" : "MAC",
  "ownerIdentityId" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdBy" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdAt" : "2024-04-09T16:15:23.377353Z",
  "updatedAt" : "2024-04-09T16:15:23.377353Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "attributes" : [ "#Attr-1", "#Attr-2" ],
  "data" : {
    "macAddresses" : [ "00:0a:95:9d:68:16" ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550",
      "title" : "My Posture Check 512651098492"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b535e04e-8688-40d3-9189-c08b4a311f88",
      "profile" : "parent"
    }
  }
}

Create Posture Check

POST /v2/posture-checks

Authorization

This endpoint requires create action on the posture-check resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

networkId

String

true

type

String

true

Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI].

attributes

Array[String]

true

data

Object

true

data.domains

Array[String]

true

data.macAddresses

Array[String]

true

data.timeoutSeconds

Integer

true

data.promptOnWake

Boolean

true

data.promptOnUnlock

Boolean

true

data.ignoreLegacyEndpoints

Boolean

true

data.operatingSystems

Array[Object]

true

data.operatingSystems[].type

String

true

Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer].

data.operatingSystems[].versions

Array[String]

true

data.process

Object

true

data.process.osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.process.path

String

true

data.process.hashes

Array[String]

true

data.process.signerFingerprint

String

true

data.processes

Array[Object]

true

data.processes[].osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.processes[].path

String

true

data.processes[].hashes

Array[String]

true

data.processes[].signerFingerprints

Array[String]

true

data.semantic

String

true

Must be one of [AllOf, AnyOf].

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ2SWRYN0ZnWTBJcVMzR0pfanNjcHRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjUwMDVlYTY1LTg4YTUtNDRmZS05M2JjLTBjZWUwZjQ0NWUzNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMywiZXhwIjoxNzEyNjgyOTIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhkZThhYzAyLTYwMmMtNGFiNy1iYzA3LThmOGE1NmNmMTg4NlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.UTaKWcmnCSwVNxY-RlXGntBVAjJBBFKfF_ZAzsCNY4XNWx3oHwCPQ6R0hnQWaD_tbE185egPbrR39nqrksT7sNqSLxrvjTSIlsjMBTw5xzfuRKWX6KDBupWVBXHN7CqVuZZc5oJW3j-aGu4nAUkzyw1uUydHeQW8YZDSr2Jax74Lhu8YPHWH1Qbtqm6I19KcgqlyzReryQStIrE6NVoEtd1XXAZv9EIkdwXYTUCVN0rQ6rvQ69Tf7fLf6TJnHpQUsAweKQZVaZcDF-IEVihpZIY89MAu4jd6wEuFdDov3kuHJtt3wm0xgg6setehpBy2zQY2uw6-4o4sGTTVNnMydQ' \
    -d '{"name":"My Posture Check 512651098492","networkId":"b535e04e-8688-40d3-9189-c08b4a311f88","type":"MAC","attributes":["#Attr-1","#Attr-2"],"data":{"macAddresses":["00:0a:95:9d:68:16"]}}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 564

{
  "id" : "b26dcba6-c18a-4ed7-a71b-ad3e09732550",
  "zitiId" : "ziti.id.6jrf3rca",
  "name" : "My Posture Check 512651098492",
  "networkId" : "b535e04e-8688-40d3-9189-c08b4a311f88",
  "type" : "MAC",
  "ownerIdentityId" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdBy" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdAt" : "2024-04-09T16:15:23.377353Z",
  "updatedAt" : "2024-04-09T16:15:23.377353Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "attributes" : [ "#Attr-1", "#Attr-2" ],
  "data" : {
    "macAddresses" : [ "00:0a:95:9d:68:16" ]
  }
}

Update Posture Check

PATCH /v2/posture-checks/{id}

Authorization

This endpoint requires update action on the posture-check resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

type

String

true

Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI].

attributes

Array[String]

true

ownerIdentityId

String

true

data

Object

true

data.domains

Array[String]

true

data.macAddresses

Array[String]

true

data.timeoutSeconds

Integer

true

data.promptOnWake

Boolean

true

data.promptOnUnlock

Boolean

true

data.ignoreLegacyEndpoints

Boolean

true

data.operatingSystems

Array[Object]

true

data.operatingSystems[].type

String

true

Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer].

data.operatingSystems[].versions

Array[String]

true

data.process

Object

true

data.process.osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.process.path

String

true

data.process.hashes

Array[String]

true

data.process.signerFingerprint

String

true

data.processes

Array[Object]

true

data.processes[].osType

String

true

Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS].

data.processes[].path

String

true

data.processes[].hashes

Array[String]

true

data.processes[].signerFingerprints

Array[String]

true

data.semantic

String

true

Must be one of [AllOf, AnyOf].

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJYb0diNE56Z045RC1XeWc5VmZVRzdBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQwOGY2OTVmLWI0MTYtNDU1ZS04MTU1LTJmNTc2ZWY3NWM3OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyNCwiZXhwIjoxNzEyNjgyOTI0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjU4YjQ1ZmMyLWFhYmQtNDAyNi04NDcyLTZiNGFjOThjYTAwMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.EbwTZh32zX2NH1Ry4H-MtcpxHaYc66pMwfcBzRDJSIUou35dx6AGyj2Oc5A7DEoUaaWPUJ-yWBZe4gkwRL3bp1Ma214S2HmV1AV3s6CV2OCdusUbTDSqmGh8PnCKafIxeN0gVRttDXcS6pC30nCjxg3ntGav9sVPbA92sqT_VcEj6UInj-4UzOkl39XqLTVv8dnUPGhk97joc3DXdh7UGFKp_VdXhMEpTFDLEvM1E2HWR7_47MZ7DzCKGgkxpK-el_5wzX6leP07H4KGHmXokC74IgnKf7ipXzstyQxMWyRTod7Hg3po0YyHEfXG5q_rL9NTPmwxUGuLfssH5Iy95w' \
    -d '{"name":"Our Service 512651098492","attributes":["#Attr-4","#Attr-2"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1133

{
  "id" : "b26dcba6-c18a-4ed7-a71b-ad3e09732550",
  "zitiId" : "ziti.id.6jrf3rca",
  "name" : "Our Service 512651098492",
  "networkId" : "b535e04e-8688-40d3-9189-c08b4a311f88",
  "type" : "MAC",
  "ownerIdentityId" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdBy" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdAt" : "2024-04-09T16:15:23.377353Z",
  "updatedAt" : "2024-04-09T16:15:24.252316Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "attributes" : [ "#Attr-4", "#Attr-2" ],
  "data" : {
    "macAddresses" : [ "00:0a:95:9d:68:16" ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550",
      "title" : "Our Service 512651098492"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b535e04e-8688-40d3-9189-c08b4a311f88",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/54f6e581-b100-4c48-a7e3-56f3646d20f0",
      "title" : "Update PostureCheck",
      "profile" : "meta"
    }
  }
}

Delete Posture Check

DELETE /v2/posture-checks/{id}

Authorization

This endpoint requires delete action on the posture-check resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjZEEtQ21XRWhvSE9qendPOENiNUNBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI0YjdmYzYzLTY3N2QtNDZkYS04MzkzLTRkNzkxM2U0ZWZhNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyNCwiZXhwIjoxNzEyNjgyOTI0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIxZjA4Mjk4LTM1OTItNDg2Mi1hZTI0LWVlNWY0NWMwMjliMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.E6TzAWS0YuXf3qx6BFBkEn-uihK51K3c5UMuYG3gBznnNPUD4pWbF4ChK5rp_zk4-vlmM-Pg8f5QZPTgU2us2nEPyY7b31hOMCv6XHX-WTn1d1lkn08AxTu9_zYtTeiH6uLck5XImcOI9ri6RAdEemGapSIHuitbhFovBYkxMRNAvl9WUWb8dp7yKeCqLxnwbPrCbh5tCWBMqutkPmrWPWtfGCR-uy2LtddPttA4SdU2OlG_UNzqC5wQEWvQQCwi2k9yUtOghThZBF6sImSCcuZouPeJiZll6c1nuyIjJEbogoSqOgHsEVRKrvcSPRFTYWwQ88PFWZ7uIFyfnLhuaw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1169

{
  "id" : "b26dcba6-c18a-4ed7-a71b-ad3e09732550",
  "zitiId" : "ziti.id.6jrf3rca",
  "name" : "Our Service 512651098492",
  "networkId" : "b535e04e-8688-40d3-9189-c08b4a311f88",
  "type" : "MAC",
  "ownerIdentityId" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdBy" : "5005ea65-88a5-44fe-93bc-0cee0f445e37",
  "createdAt" : "2024-04-09T16:15:23.377353Z",
  "updatedAt" : "2024-04-09T16:15:24.581317Z",
  "deletedBy" : "b4b7fc63-677d-46da-8393-4d7913e4efa4",
  "deletedAt" : "2024-04-09T16:15:24.581Z",
  "attributes" : null,
  "data" : {
    "macAddresses" : [ "00:0a:95:9d:68:16" ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/b26dcba6-c18a-4ed7-a71b-ad3e09732550",
      "title" : "Our Service 512651098492"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b535e04e-8688-40d3-9189-c08b4a311f88",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/1af1643a-7c25-49dd-b6c4-70966b7d5fb4",
      "title" : "Delete PostureCheck",
      "profile" : "meta"
    }
  }
}

Certificate Authorities

Find Certificate Authorities

GET /v2/certificate-authorities

Authorization

This endpoint requires read action on the certificate-authority resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

isAutoCaEnrollment

Boolean

true

Deprecated..

isOttCaEnrollmentEnabled

Boolean

true

Deprecated..

isAuthEnabled

Boolean

true

Deprecated..

isVerified

Boolean

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

networkId

String

true

zitiId

String

true

name

String

true

endpointAttributes

Array[String]

true

verificationToken

String

true

fingerprint

String

true

jwt

String

true

certPem

String

true

identityNameFormat

String

true

verified

Boolean

true

authEnabled

Boolean

true

autoCaEnrollmentEnabled

Boolean

true

ottCaEnrollmentEnabled

Boolean

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ4SkI4dXItemM3NTlweVZneU5oaWVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ3NjI5MGU0LWExYjEtNDk4Yi05NWQxLTNhZmZlYzAwYTE2MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjJkMGEzOWZkLTI3MWUtNGE0Mi04NzAzLTU0MjkxM2EwOTk5MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.WkjtPQHhazxlyXNwuRhbprWfjGzTeDDB5snVYQQgBB-Qy46epu8_1ap_ARuJPYgAkN0XnNPrcI75MvOEEJWzREjViXqOkbhnoYFmtZHcmgxJ7r8iCJPgscqQAhgVVL5PidKEdgk5B3biDaWar3YgxlHfXRxF-PoTGkTNyyFaDJpXD_7S11uU_05P1GU7BXsgZ_V_LGzKxl36DDzUFgLTs7gXWGf83aXWaHOjuxbSi14Y4h1HuFT-wNAJGVFX5mpktqMfwzTjAJwUSpERXnDVuIvbyMEOHQY2xYCrqv6lyvJAYlJhZwTTdWZ1eJe4fRVf_n8p66twx15Qv3VOxw28Vg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 15879

{
  "_embedded" : {
    "certificateAuthorityList" : [ {
      "id" : "015bdcce-5445-4126-9cf6-d57b957e7051",
      "ownerIdentityId" : "b28f0419-0c8a-4843-a234-12e7b184d6d6",
      "createdBy" : "b28f0419-0c8a-4843-a234-12e7b184d6d6",
      "createdAt" : "2024-04-09T16:14:10.359419Z",
      "updatedAt" : "2024-04-09T16:14:10.360381Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "c708ad01-0529-4d17-8aa2-88c48b64d10f",
      "zitiId" : "ziti-id-cdec8ec7-6d60-404d-9349-206673f59df1",
      "name" : "ca-708",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/c708ad01-0529-4d17-8aa2-88c48b64d10f"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/015bdcce-5445-4126-9cf6-d57b957e7051",
          "title" : "ca-708"
        }
      }
    }, {
      "id" : "0f841127-1440-44e2-8f16-c9f0434bc78b",
      "ownerIdentityId" : "5160d73c-032a-4d5d-9837-6068dcecd733",
      "createdBy" : "5160d73c-032a-4d5d-9837-6068dcecd733",
      "createdAt" : "2024-04-09T16:14:10.683216Z",
      "updatedAt" : "2024-04-09T16:14:10.684165Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "fcfd502f-420a-4d7a-8864-060232df062c",
      "zitiId" : "ziti-id-10aec61c-3519-49fc-b009-36a057333bc2",
      "name" : "ca-748",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/fcfd502f-420a-4d7a-8864-060232df062c"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/0f841127-1440-44e2-8f16-c9f0434bc78b",
          "title" : "ca-748"
        }
      }
    }, {
      "id" : "20d87d81-fcfd-4260-b5cf-e7742fc8a945",
      "ownerIdentityId" : "c0f9f800-e223-45cc-8182-060780720426",
      "createdBy" : "c0f9f800-e223-45cc-8182-060780720426",
      "createdAt" : "2024-04-09T16:14:10.422900Z",
      "updatedAt" : "2024-04-09T16:14:10.423772Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "17761572-bcaa-48ca-bd87-a3d3694b0a1c",
      "zitiId" : "ziti-id-1036fb8f-d15d-4a0f-969c-4117a9827b8a",
      "name" : "ca-718",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/17761572-bcaa-48ca-bd87-a3d3694b0a1c"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/20d87d81-fcfd-4260-b5cf-e7742fc8a945",
          "title" : "ca-718"
        }
      }
    }, {
      "id" : "338a0716-e69d-4043-8270-b3787192104d",
      "ownerIdentityId" : "5c961a12-378a-4107-987f-17218439179d",
      "createdBy" : "5c961a12-378a-4107-987f-17218439179d",
      "createdAt" : "2024-04-09T16:14:10.090574Z",
      "updatedAt" : "2024-04-09T16:14:10.091251Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "484787ee-8c99-456d-8309-c4aea2299def",
      "zitiId" : "ziti-id-57e52b5c-dbe5-4da1-afdf-032a2f352343",
      "name" : "ca-678",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/484787ee-8c99-456d-8309-c4aea2299def"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/338a0716-e69d-4043-8270-b3787192104d",
          "title" : "ca-678"
        }
      }
    }, {
      "id" : "51149bba-14ce-441b-a9ff-4f1d52603bda",
      "ownerIdentityId" : "7411ace7-4405-43e3-ac4a-746a1d7f4afe",
      "createdBy" : "7411ace7-4405-43e3-ac4a-746a1d7f4afe",
      "createdAt" : "2024-04-09T16:14:10.081895Z",
      "updatedAt" : "2024-04-09T16:14:10.085508Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "ee867565-5841-4f19-bf0f-97e0e954fea2",
      "zitiId" : "ziti-id-90c62eb1-0840-499d-8855-58431892f924",
      "name" : "v8-network-ca",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/ee867565-5841-4f19-bf0f-97e0e954fea2"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/51149bba-14ce-441b-a9ff-4f1d52603bda",
          "title" : "v8-network-ca"
        }
      }
    }, {
      "id" : "829af826-7c0e-49aa-8f10-6a3ac3cdea23",
      "ownerIdentityId" : "787e9afa-0d5c-4635-8553-11f89f52c197",
      "createdBy" : "787e9afa-0d5c-4635-8553-11f89f52c197",
      "createdAt" : "2024-04-09T16:14:10.159024Z",
      "updatedAt" : "2024-04-09T16:14:10.159871Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "f1e4ade7-3dbf-4c16-bf31-74e3af8007cf",
      "zitiId" : "ziti-id-58281f22-80fc-4538-8e86-d123c5c8f8a4",
      "name" : "ca-688",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/f1e4ade7-3dbf-4c16-bf31-74e3af8007cf"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/829af826-7c0e-49aa-8f10-6a3ac3cdea23",
          "title" : "ca-688"
        }
      }
    }, {
      "id" : "942a9e89-4f1c-4ea3-ba8c-9c277e7fd55f",
      "ownerIdentityId" : "06245886-40dd-4808-90b9-aac9eb7a3849",
      "createdBy" : "06245886-40dd-4808-90b9-aac9eb7a3849",
      "createdAt" : "2024-04-09T16:14:10.248287Z",
      "updatedAt" : "2024-04-09T16:14:10.249263Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "856e05e9-021b-419d-8aac-025d38f0e5e2",
      "zitiId" : "ziti-id-5515c01a-94d6-4a47-993c-0d20939e63f8",
      "name" : "ca-698",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/856e05e9-021b-419d-8aac-025d38f0e5e2"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/942a9e89-4f1c-4ea3-ba8c-9c277e7fd55f",
          "title" : "ca-698"
        }
      }
    }, {
      "id" : "a2ba076a-1e3c-48f9-b486-2f6736f583cd",
      "ownerIdentityId" : "88af7aa0-42aa-44bb-9a54-9951a1a06ac0",
      "createdBy" : "88af7aa0-42aa-44bb-9a54-9951a1a06ac0",
      "createdAt" : "2024-04-09T16:14:10.374148Z",
      "updatedAt" : "2024-04-09T16:14:10.375428Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "c708ad01-0529-4d17-8aa2-88c48b64d10f",
      "zitiId" : "0f14c226-a4cd-4b51-bb39-e6468b982631",
      "name" : "Test ca 02",
      "endpointAttributes" : [ "#secureclients" ],
      "verificationToken" : null,
      "fingerprint" : null,
      "jwt" : null,
      "certPem" : "-----BEGIN CERTIFICATE-----\nMIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAw\nczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0\nRm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwg\nSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEw\nMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQK\nEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0\nWFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4\nuh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME\n5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB\n5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1\n+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9\nGOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk\n/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1Ud\nDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx\n6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0M\nPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNX\nF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZA\nVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZey\nei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD\n7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL\n2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNd\nSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUK\nY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh\n4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFh\nm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMI\ny1w5WLo3pCVTsufnZmo=\n-----END CERTIFICATE-----",
      "identityNameFormat" : "[commonName] - [identityId]",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/c708ad01-0529-4d17-8aa2-88c48b64d10f"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/a2ba076a-1e3c-48f9-b486-2f6736f583cd",
          "title" : "Test ca 02"
        }
      }
    }, {
      "id" : "ad30d96e-8599-42f5-9a4e-b2e5c93f3e53",
      "ownerIdentityId" : "b423427a-e905-43ef-8388-6a3177a47139",
      "createdBy" : "b423427a-e905-43ef-8388-6a3177a47139",
      "createdAt" : "2024-04-09T16:14:10.294901Z",
      "updatedAt" : "2024-04-09T16:14:10.296945Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "856e05e9-021b-419d-8aac-025d38f0e5e2",
      "zitiId" : "d5ed9f95-405c-468f-b40f-6107026c2931",
      "name" : "Test ca 02",
      "endpointAttributes" : [ "#secureclients" ],
      "verificationToken" : null,
      "fingerprint" : null,
      "jwt" : null,
      "certPem" : "-----BEGIN CERTIFICATE-----\nMIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAw\nczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0\nRm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwg\nSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEw\nMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQK\nEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0\nWFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4\nuh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME\n5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB\n5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1\n+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9\nGOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk\n/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1Ud\nDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx\n6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0M\nPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNX\nF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZA\nVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZey\nei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD\n7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL\n2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNd\nSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUK\nY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh\n4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFh\nm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMI\ny1w5WLo3pCVTsufnZmo=\n-----END CERTIFICATE-----",
      "identityNameFormat" : null,
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/856e05e9-021b-419d-8aac-025d38f0e5e2"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/ad30d96e-8599-42f5-9a4e-b2e5c93f3e53",
          "title" : "Test ca 02"
        }
      }
    }, {
      "id" : "cb5cc1b7-d016-4110-920d-1e1816b10b0e",
      "ownerIdentityId" : "9a705435-68a5-4eef-be1a-0202f4978604",
      "createdBy" : "9a705435-68a5-4eef-be1a-0202f4978604",
      "createdAt" : "2024-04-09T16:14:10.504105Z",
      "updatedAt" : "2024-04-09T16:14:10.504834Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "71c6bc54-dd9b-4935-890d-be12291f4ba1",
      "zitiId" : "ziti-id-8c0f96d8-b5de-4159-b1cf-d7ad2386cd02",
      "name" : "ca-728",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/71c6bc54-dd9b-4935-890d-be12291f4ba1"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/cb5cc1b7-d016-4110-920d-1e1816b10b0e",
          "title" : "ca-728"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 10,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Certificate Authority

GET /v2/certificate-authorities/{id}

Authorization

This endpoint requires read action on the certificate-authority resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities/bdde7e1a-49a3-47c4-a067-8ee4b8e99ea8' -i -X GET \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJRX01oNVloejFkMU4wWkJWelVMWlpnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMyZjFhNGIzLTJjODctNDVjYS05MTVjLWI3ZmUxM2Q5ZGFmZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU1OTI2NmZmLWEyMTYtNDBiYS1iNmRiLTU1ZDAzOGU5ZDUzYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.j6ydEK30FyRUly2gTU4xKiJikVOyBLx4XPj0ijtaalU4xU9l2bqIFOAKhcFAFkBi-Wto3oCepda6hyrA21pQIPOQU2fCh1QfmHbUpgM4tQJdI8whEhwOBXimJLqU0kJeNgH4r0-39YO5DPuOsHaALondXUdFbmMlLL_jq9f60kvKmmRQqMnfSTUo28IHFBAJ3xEaBxoTakBUJ-r5YkiGKmLto5KKiaSw9ok7W6W0hD_z-ypPdzccdba-cesqKBYDiW5nikvn26FFUBn8Bwt4XFXgN808N8Ubmakd56O4sSaZhFQ00xVWxx8NK4G2qsugXNvQzLYsJP7VrtlHdrU9Vg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1090

{
  "id" : "bdde7e1a-49a3-47c4-a067-8ee4b8e99ea8",
  "ownerIdentityId" : "fd588da4-0164-4bc5-b859-c3bd1383ce21",
  "createdBy" : "fd588da4-0164-4bc5-b859-c3bd1383ce21",
  "createdAt" : "2024-04-09T16:14:10.971257Z",
  "updatedAt" : "2024-04-09T16:14:10.972081Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "b240270c-b627-4963-883d-fb294806f010",
  "zitiId" : "ziti-id-f0160165-2f08-407b-9502-c1f9dba805f0",
  "name" : "ca-768",
  "endpointAttributes" : [ ],
  "verificationToken" : "token",
  "fingerprint" : "fingerprint",
  "jwt" : "jwt",
  "certPem" : "fake-pem",
  "identityNameFormat" : "name-format",
  "verified" : false,
  "authEnabled" : false,
  "autoCaEnrollmentEnabled" : false,
  "ottCaEnrollmentEnabled" : false,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/b240270c-b627-4963-883d-fb294806f010"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/bdde7e1a-49a3-47c4-a067-8ee4b8e99ea8",
      "title" : "ca-768"
    }
  }
}

Create Certificate Authority

POST /v2/certificate-authorities

Authorization

This endpoint requires create action on the certificate-authority resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

autoCaEnrollmentEnabled

Boolean

true

authEnabled

Boolean

true

ottCaEnrollmentEnabled

Boolean

true

certPem

String

true

endpointAttributes

Array[String]

true

identityNameFormat

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJhVU5MZUdZd2ljckRFQmo3UTROOHRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI0MjM0MjdhLWU5MDUtNDNlZi04Mzg4LTZhMzE3N2E0NzEzOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQ2NjBkMzI3LWFlOWUtNDc0YS1hNGI2LTk0ZmFlNjE5NTlkN1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.n9y7JydUHAUlxWlfBQWQrJtb3WjsnboXQh49Ij-KjnHSn7loEB1y_WwAlDMtvWZ0Zol-dbFdRXz-pL08NVXpWbQOhDg5grjuwAFpU6fKmxwbmGp-Wzj4n-FYyBfmRtRsElYEPKsHS58_msO2KrCVQd9XqycllpuuvM1x86UgJhMXGZ14SbIdAjx_pYfEt8kLiSXy4F9t-9PMIfz4dXUGKsqUPMUJWtov9GBxDknTmvTyb4yL7XyCUROsWGSUdoQZm777wMFg5AKXI64hC8pYt8sto0ftEgGlZzrfEw4yZa0aqGORk7DA1LW_ETmvopH5Bzzn9Ae1-eNbNPDQdIH2MQ' \
    -d '{"networkId":"856e05e9-021b-419d-8aac-025d38f0e5e2","name":"Test ca 02","autoCaEnrollmentEnabled":true,"authEnabled":false,"ottCaEnrollmentEnabled":false,"certPem":"-----BEGIN CERTIFICATE-----\nMIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAw\nczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0\nRm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwg\nSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEw\nMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQK\nEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0\nWFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4\nuh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME\n5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB\n5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1\n+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9\nGOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk\n/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1Ud\nDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx\n6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0M\nPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNX\nF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZA\nVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZey\nei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD\n7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL\n2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNd\nSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUK\nY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh\n4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFh\nm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMI\ny1w5WLo3pCVTsufnZmo=\n-----END CERTIFICATE-----","endpointAttributes":["#secureclients"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 3017

{
  "id" : "ad30d96e-8599-42f5-9a4e-b2e5c93f3e53",
  "ownerIdentityId" : "b423427a-e905-43ef-8388-6a3177a47139",
  "createdBy" : "b423427a-e905-43ef-8388-6a3177a47139",
  "createdAt" : "2024-04-09T16:14:10.294901Z",
  "updatedAt" : "2024-04-09T16:14:10.296945Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "856e05e9-021b-419d-8aac-025d38f0e5e2",
  "zitiId" : "d5ed9f95-405c-468f-b40f-6107026c2931",
  "name" : "Test ca 02",
  "endpointAttributes" : [ "#secureclients" ],
  "verificationToken" : null,
  "fingerprint" : null,
  "jwt" : null,
  "certPem" : "-----BEGIN CERTIFICATE-----\nMIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAw\nczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0\nRm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwg\nSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEw\nMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQK\nEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0\nWFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4\nuh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME\n5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB\n5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1\n+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9\nGOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk\n/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1Ud\nDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx\n6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0M\nPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNX\nF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZA\nVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZey\nei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD\n7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL\n2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNd\nSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUK\nY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh\n4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFh\nm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMI\ny1w5WLo3pCVTsufnZmo=\n-----END CERTIFICATE-----",
  "identityNameFormat" : null,
  "verified" : false,
  "authEnabled" : false,
  "autoCaEnrollmentEnabled" : false,
  "ottCaEnrollmentEnabled" : false,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/856e05e9-021b-419d-8aac-025d38f0e5e2"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/ad30d96e-8599-42f5-9a4e-b2e5c93f3e53",
      "title" : "Test ca 02"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/b1cdf9a0-211c-46f1-9f0a-baf317d755f9",
      "title" : "Create CertificateAuthority",
      "profile" : "meta"
    }
  }
}

Verify Certificate Authority

POST /v2/certificate-authorities/{id}/verify

Authorization

This endpoint requires update action on the certificate-authority resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities/cb5cc1b7-d016-4110-920d-1e1816b10b0e/verify' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJqSTlrVmdvYW5pbHhwVkRHaWk2emVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZlNTk3Y2QyLTdkOWQtNDZjOC04YzdkLTFiM2MxNTNlZjMyOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNmMGU1NWU0LTgyMDEtNDVhNC04OWY4LWQ5YzdmNzU4NjRlMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.UTri5BiMn3TejAu7XH_LtT1yI4Vm_mjZln8uS6SVqfkcs8Crh6FaVEGfxQNXXRykHWpgb1jMxHuSKqpb99yZFxEYzl0HM7sWDuoOfqBUEkmFBK25byvRuHUSPhUv7WAJElRQOPSNzlipXzcU5PUNdtNDnTuNAigrI-1XWlvxG_yUfSWASbrNx8QCFIl6ezgx6W2trruJYpW5kydWFNqAGofkYtd-Lb6XOER4sNJv7riFPXSzBggfecqR6xyWrNWBnECQ1GYp70o0wf_xFVsJJv7EbOOM9QGD99wwHOkERHlDrCoKeNIom2imC-xjYywvWwgGFyHyHlJkW5ucfyv_ww' \
    -d '<testcertverificationbody>'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1090

{
  "id" : "cb5cc1b7-d016-4110-920d-1e1816b10b0e",
  "ownerIdentityId" : "9a705435-68a5-4eef-be1a-0202f4978604",
  "createdBy" : "9a705435-68a5-4eef-be1a-0202f4978604",
  "createdAt" : "2024-04-09T16:14:10.504105Z",
  "updatedAt" : "2024-04-09T16:14:10.504834Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "71c6bc54-dd9b-4935-890d-be12291f4ba1",
  "zitiId" : "ziti-id-8c0f96d8-b5de-4159-b1cf-d7ad2386cd02",
  "name" : "ca-728",
  "endpointAttributes" : [ ],
  "verificationToken" : "token",
  "fingerprint" : "fingerprint",
  "jwt" : "jwt",
  "certPem" : "fake-pem",
  "identityNameFormat" : "name-format",
  "verified" : false,
  "authEnabled" : false,
  "autoCaEnrollmentEnabled" : false,
  "ottCaEnrollmentEnabled" : false,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/71c6bc54-dd9b-4935-890d-be12291f4ba1"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/cb5cc1b7-d016-4110-920d-1e1816b10b0e",
      "title" : "ca-728"
    }
  }
}

Patch Certificate Authority

PATCH /v2/certificate-authorities/{id}

Authorization

This endpoint requires update action on the certificate-authority resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

autoCaEnrollmentEnabled

Boolean

true

authEnabled

Boolean

true

ottCaEnrollmentEnabled

Boolean

true

endpointAttributes

Array[String]

true

identityNameFormat

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities/20d87d81-fcfd-4260-b5cf-e7742fc8a945' -i -X PATCH \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJNbnRWcWxkekVNSWJEWFpoRGpoaFZnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI5MjI5ZWE1LTYxYjUtNDVmNC05ODVkLWI3ZmE1OTBlNWU1OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjkzNzMxMjU0LTg5ZTgtNDk4Zi05YzIxLTQwM2IzNTYxMjA5NlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BahHbB1PV0QiREK9US89khhToYqn4vIkN897nrAc0RCSfiA-mWaaRQoM9X0SQKjzgXEwfYi9Uob9Sbyy4ijZZ1mNLWilxOzyl1RLt0Vh0Y2VvO1YqPVnolww4pwbGz7ud9LlO--1CrWJ49oStJA03_K5zc-JgUnhu1Pn8_v2SHGau4RowtfzGHhMXT0MrGBPBn4DN_fXthBWNIgDK-6TlvSw3KI2WAm-MOrhpxfCSYa0GTuwmhETtvVX5f9meHK7XIUXQ_5EJOESZR4sMRECkWWqc0qU8lE-GqgpqfVoBwzgC0LWJQeUY-ZQaX34pjJfExIdmlmH4r0YaH-BZl5oZA' \
    -d '{"name":"Test ca 02 updated"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1304

{
  "id" : "20d87d81-fcfd-4260-b5cf-e7742fc8a945",
  "ownerIdentityId" : "c0f9f800-e223-45cc-8182-060780720426",
  "createdBy" : "c0f9f800-e223-45cc-8182-060780720426",
  "createdAt" : "2024-04-09T16:14:10.422900Z",
  "updatedAt" : "2024-04-09T16:14:10.423772Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "networkId" : "17761572-bcaa-48ca-bd87-a3d3694b0a1c",
  "zitiId" : "ziti-id-1036fb8f-d15d-4a0f-969c-4117a9827b8a",
  "name" : "ca-718",
  "endpointAttributes" : [ ],
  "verificationToken" : "token",
  "fingerprint" : "fingerprint",
  "jwt" : "jwt",
  "certPem" : "fake-pem",
  "identityNameFormat" : "name-format",
  "verified" : false,
  "authEnabled" : false,
  "autoCaEnrollmentEnabled" : false,
  "ottCaEnrollmentEnabled" : false,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/17761572-bcaa-48ca-bd87-a3d3694b0a1c"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/20d87d81-fcfd-4260-b5cf-e7742fc8a945",
      "title" : "ca-718"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/89f1ba8c-a110-463a-953e-f24fd4b51fbb",
      "title" : "Update CertificateAuthority",
      "profile" : "meta"
    }
  }
}

Delete Certificate Authority

DELETE /v2/certificate-authorities/{id}

Authorization

This endpoint requires delete action on the certificate-authority resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities/a92e78a3-6c89-4ff6-87f7-74281fe7fcc5' -i -X DELETE \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJlaWdiY3RNTXlJUnJ5b25pMnUwcjRnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUzMDA5ZmVhLTg2MWItNDM5ZC04NWM5LWQ1YTdiNzY2NTg4YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI1MCwiZXhwIjoxNzEyNjgyODUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRlZGNlN2ZmLTU4OWYtNGQ3Yi1hNjkyLTllZWI3YjJhOTAxYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.e0sDh07AbckUhRg1UCm-mBKcsVJxDYpsJ6DvTCulugZUb28PIFsTuZWGXIGhmc3MbkHJ-3IRHHg4EDLFbSSl9YPrCYRDMxuISnEQRDAcwqb2hSpMT9KXlIc9xNs-rd5YUyI6i9PMVkpnECAmxaBKAbiUJvBeitM6LBcTpZzdcEz77L6XfCXXXgn8-G4b9Hmp5gfdbC2g1FGpwWisSLir0tqPxaYMP2wvlEuMjp-_Ixmai6b3Av2eVCH5LHtYuQlaivcaNJCH5wHcpn3aMzFYdH43G84e1HiQj686jBq2tlLZXuKy0isLE44mmwzdsdRUyjZbzJ_vhwjYS67UCXK3fw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1360

{
  "id" : "a92e78a3-6c89-4ff6-87f7-74281fe7fcc5",
  "ownerIdentityId" : "6254c499-4041-4d2c-8413-990d556b434a",
  "createdBy" : "6254c499-4041-4d2c-8413-990d556b434a",
  "createdAt" : "2024-04-09T16:14:10.576967Z",
  "updatedAt" : "2024-04-09T16:14:10.610229Z",
  "deletedBy" : "e3009fea-861b-439d-85c9-d5a7b766588b",
  "deletedAt" : "2024-04-09T16:14:10.610Z",
  "networkId" : "5fc56777-18d3-4534-8b9d-32483f99f834",
  "zitiId" : "ziti-id-9ef24071-b10a-479b-88d2-887ff2056e10",
  "name" : "ca-738",
  "endpointAttributes" : [ ],
  "verificationToken" : "token",
  "fingerprint" : "fingerprint",
  "jwt" : "jwt",
  "certPem" : "fake-pem",
  "identityNameFormat" : "name-format",
  "verified" : false,
  "authEnabled" : false,
  "autoCaEnrollmentEnabled" : false,
  "ottCaEnrollmentEnabled" : false,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/5fc56777-18d3-4534-8b9d-32483f99f834"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/a92e78a3-6c89-4ff6-87f7-74281fe7fcc5",
      "title" : "ca-738"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/dd67e496-cb9c-4da1-b73d-438fd7fa146a",
      "title" : "Delete CertificateAuthority",
      "profile" : "meta"
    }
  }
}

Find Certificate Authorities

GET /v2/certificate-authorities

Authorization

This endpoint requires read action on the certificate-authority resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

isAutoCaEnrollment

Boolean

true

Deprecated..

isOttCaEnrollmentEnabled

Boolean

true

Deprecated..

isAuthEnabled

Boolean

true

Deprecated..

isVerified

Boolean

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

networkId

String

true

zitiId

String

true

name

String

true

endpointAttributes

Array[String]

true

verificationToken

String

true

fingerprint

String

true

jwt

String

true

certPem

String

true

identityNameFormat

String

true

verified

Boolean

true

authEnabled

Boolean

true

autoCaEnrollmentEnabled

Boolean

true

ottCaEnrollmentEnabled

Boolean

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJnSnF4VE51bGJfRjR5U3Z5M3ppUEpBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjcxOTdhNTBmLWJlZTItNDBhOC1iOWNhLTljZjA3MWMwMzZkMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE3NiwiZXhwIjoxNzEyNjgyNzc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjczZTE5NDk3LTgyNDYtNGQ3OC05YTBjLWIyMzUyYjdhZTFhY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.S8zqf3scwiTqCGPN901EdXQFIV6fzApdL4s_OBnf3hDvIAvIpNWi8bcV_3gjsaPY-xSf4wdAs7Soc9H8mRs0YnjnWla7GhbSjx-32Mj9J4fz1KGvQHQSbbHXcPKqaZC5yMNGhQ43uq_gQLt0FPPxmn59QyWACP7E0qVeOcGT6-gH8lfp6ZmOJnjj0b6EB9agR7cwVDeyw79ZnW8rD2um0cqbjFlB7z_OZlBZHsEFkRehMn9ol5c03YR9H8ddL78EsBz8dOmLccQnQN7h2XFpbkzXk93XNWz3M1ct-4bWGNSzQRNb1-RuD-gIOo-sbcpmSTsdZ2zHMhxTziWF3Mypbg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2745

{
  "_embedded" : {
    "certificateAuthorityList" : [ {
      "id" : "9668332b-49e2-4e08-ad94-7ceebaa6a153",
      "ownerIdentityId" : "523c828e-b1a5-4b55-8ac3-9ae64a704ea4",
      "createdBy" : "523c828e-b1a5-4b55-8ac3-9ae64a704ea4",
      "createdAt" : "2024-04-09T16:12:56.842866Z",
      "updatedAt" : "2024-04-09T16:12:56.862185Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "3da123d6-adad-4331-8e56-1f9444c08152",
      "zitiId" : "ziti-id-1499fe89-d3a1-4c10-9ffb-6a8d7b196f01",
      "name" : "Find Test CA 1",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : false,
      "authEnabled" : false,
      "autoCaEnrollmentEnabled" : false,
      "ottCaEnrollmentEnabled" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/9668332b-49e2-4e08-ad94-7ceebaa6a153",
          "title" : "Find Test CA 1"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/3da123d6-adad-4331-8e56-1f9444c08152"
        }
      }
    }, {
      "id" : "f7673129-2419-4bb6-8831-e9b6ebd37376",
      "ownerIdentityId" : "523c828e-b1a5-4b55-8ac3-9ae64a704ea4",
      "createdBy" : "523c828e-b1a5-4b55-8ac3-9ae64a704ea4",
      "createdAt" : "2024-04-09T16:12:56.873751Z",
      "updatedAt" : "2024-04-09T16:12:56.877130Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "networkId" : "3da123d6-adad-4331-8e56-1f9444c08152",
      "zitiId" : "ziti-id-33e450f3-33a8-45e0-be0a-b212341e9ba7",
      "name" : "Find Test CA 2",
      "endpointAttributes" : [ ],
      "verificationToken" : "token",
      "fingerprint" : "fingerprint",
      "jwt" : "jwt",
      "certPem" : "fake-pem",
      "identityNameFormat" : "name-format",
      "verified" : true,
      "authEnabled" : true,
      "autoCaEnrollmentEnabled" : true,
      "ottCaEnrollmentEnabled" : true,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/f7673129-2419-4bb6-8831-e9b6ebd37376",
          "title" : "Find Test CA 2"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/3da123d6-adad-4331-8e56-1f9444c08152"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Service Edge Router Policies

Find Service Edge Router Policies

GET /v2/service-edge-router-policies

Authorization

This endpoint requires read action on the service-edge-router-policy resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

zitiId

String

true

name

String

true

semantic

String

true

Must be one of [AllOf, AnyOf].

serviceAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

exclusiveType

String

true

Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy].

exclusiveToId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzX3g0V1BPOW5PZjhWc25BdURya2N3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM3MjE4YmRlLTVmMDQtNGExMS1hOGIwLTliY2Y1MDkzMjA3YyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMxOCwiZXhwIjoxNzEyNjgyOTE4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhmYjBkNmMxLThkODUtNGY1MC05MzA0LTEyZDc1NWUyZDUzM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMxOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QDYul3NJ925c4LKicXrwJ2Ml9yZJBvPzCE0430zjleFC3dPqQvfe2gvevaSwB2IQ0ggvvR7eJ3uJIrdzQbPn1FT_NyrvoyWSBtYRNudHOdLNpHoRG26QkRX4WRCU0OdibzKOYZRzCsojvW5htA6RGcEqH7IESWVaB2SS9pe6Mncwww1cMItRxvwuwcwi2wrhop2c2fBC2yE3ibPxXDGTMYDXyVVKVtu-0qhUoJN9NYXlxHD1RhUaICeRWeUoL-S0ldSyDJdKvV_8PgGAchO38eI3Ut7G9xUuDPnCjfSUVC6_dlZzJyz6PuVGVyAk8nVZCzArOTwYqqn91OXkfu3rOw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2571

{
  "_embedded" : {
    "serviceEdgeRouterPolicyList" : [ {
      "id" : "7a46b115-a796-42e9-8667-c6814a5dc82b",
      "networkId" : "6bb2e291-4e44-46af-982f-32a7cde7aaf7",
      "zitiId" : "ziti.id.6hgc7emh",
      "name" : "My Service Edge Router Policy 508020454306",
      "semantic" : "AnyOf",
      "serviceAttributes" : [ "#router-3" ],
      "edgeRouterAttributes" : [ "#service-1", "#service-5" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
      "createdBy" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
      "createdAt" : "2024-04-09T16:15:18.344846Z",
      "updatedAt" : "2024-04-09T16:15:18.353807Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6bb2e291-4e44-46af-982f-32a7cde7aaf7",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b",
          "title" : "My Service Edge Router Policy 508020454306"
        }
      }
    }, {
      "id" : "f3e56d36-17d9-4f84-aebe-325b7875d94a",
      "networkId" : "0d166ca2-325c-4fc1-8fd4-3ba4d226b1ec",
      "zitiId" : "ziti.id.6hf6zdkm",
      "name" : "My Service Edge Router Policy 508017878649",
      "semantic" : "AnyOf",
      "serviceAttributes" : [ "#router-3" ],
      "edgeRouterAttributes" : [ "#service-1", "#service-5" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "856681b1-5f52-416d-b388-335bcf85645c",
      "createdBy" : "856681b1-5f52-416d-b388-335bcf85645c",
      "createdAt" : "2024-04-09T16:15:18.273239Z",
      "updatedAt" : "2024-04-09T16:15:18.284592Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/0d166ca2-325c-4fc1-8fd4-3ba4d226b1ec",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/f3e56d36-17d9-4f84-aebe-325b7875d94a",
          "title" : "My Service Edge Router Policy 508017878649"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Service Edge Router Policy

GET /v2/service-edge-router-policies/{id}

Authorization

This endpoint requires read action on the service-edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWWUFwUnFmVlNOazFKUC15VjNsWG1RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjlkZTQ3Zjk4LTJlODQtNGVmZC05NjdmLTcwZDQ0OTM4MWM2NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMxOCwiZXhwIjoxNzEyNjgyOTE4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ5OGQyMWIyLTkxMjMtNDBiMy1iNmJkLWY4MDNkZmMzM2JjMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMxOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.qqwSahWUbKAdklSbdlivjt5xXf72kSUaWlnu-VS62VsUxsNM14KR9uYHJjHJr1hL2YeNlAgP-B2aYGr2bLKLWflkVIxpZdQliAW_Zp614vDZNxovNY3qwgI5t9jpNeb3UFR-KeBGwsaB11mGNm2L5I3RNBG31QAFy8pjgL7z9pXc2t6cC3jUj2x8vHiGuAXS54zny0WqP5Xj08aavps_thMbXnCSH2ozuaBZVwnQOCXqa6SQBTVbdTS1jHqdXAe12xfVNT07UYOWsN16uHDB5mfKMRYTEBSCGWpfCq3WNt620vr0easm1ltQrR9V0WetDbGWLt8xZfw_K7dWLOK2hw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1042

{
  "id" : "7a46b115-a796-42e9-8667-c6814a5dc82b",
  "networkId" : "6bb2e291-4e44-46af-982f-32a7cde7aaf7",
  "zitiId" : "ziti.id.6hgc7emh",
  "name" : "My Service Edge Router Policy 508020454306",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ "#service-2", "#service-1" ],
  "edgeRouterAttributes" : [ "#router-1", "#router-2" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdBy" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdAt" : "2024-04-09T16:15:18.344846Z",
  "updatedAt" : "2024-04-09T16:15:18.353807Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6bb2e291-4e44-46af-982f-32a7cde7aaf7",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b",
      "title" : "My Service Edge Router Policy 508020454306"
    }
  }
}

Create Service Edge Router Policy

POST /v2/service-edge-router-policies

Authorization

This endpoint requires create action on the service-edge-router-policy resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

semantic

String

true

Must be one of [AllOf, AnyOf].

edgeRouterAttributes

Array[String]

true

serviceAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsRkFiclVBelJEeTBRSWMzcnhmY0RRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAwMjQ0YzIxLTZlMGYtNGM1Zi04OGJkLWUwMWNhMmRjNDhlNiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMxOCwiZXhwIjoxNzEyNjgyOTE4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ4YWEzMjE5LTBmOWQtNDAyYS05OWExLWY2MDRhZGFlOWVmNFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMxOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.X3IuGvDLln-LSE_Ax-68xKB6sno2_37A5ASspTV3uuk_CoOmJZO1AF2kN6k87xSOh9OYi5--HgJYxJtZSvk4bMbX-SCsnDs0JeAPX0Qu8kB63W-4rp2yqBZf6fHKp2EXCpQg1WX7VeRrmK6F-lXat13uUl9-oqQiye1bw_-ppyH7xiXfdHVGS97VBk08CIWuGBq5pQQtyY69QO3h6IdE7GnmgzDTACX_c2mUocPhItJM7bTYw4st4LJHCAtQ2EUwTWiRowTydKY0b0G99UodQJIqSVLBd8cnpDYQzQZlK-jbltluv0F0NfRgVlTLX8RAR-n13NF2gT-I7Ryn7_U7TQ' \
    -d '{"networkId":"6bb2e291-4e44-46af-982f-32a7cde7aaf7","name":"My Service Edge Router Policy 508020454306","semantic":"AnyOf","edgeRouterAttributes":["#router-1","#router-2"],"serviceAttributes":["#service-1","#service-2"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 642

{
  "id" : "7a46b115-a796-42e9-8667-c6814a5dc82b",
  "networkId" : "6bb2e291-4e44-46af-982f-32a7cde7aaf7",
  "zitiId" : "ziti.id.6hgc7emh",
  "name" : "My Service Edge Router Policy 508020454306",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ "#service-2", "#service-1" ],
  "edgeRouterAttributes" : [ "#router-1", "#router-2" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdBy" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdAt" : "2024-04-09T16:15:18.344846Z",
  "updatedAt" : "2024-04-09T16:15:18.353807Z",
  "deletedBy" : null,
  "deletedAt" : null
}

Update Service Edge Router Policy

PATCH /v2/service-edge-router-policies/{id}

Authorization

This endpoint requires update action on the service-edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

semantic

String

true

Must be one of [AllOf, AnyOf].

serviceAttributes

Array[String]

true

edgeRouterAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3QmJha29GdGdKc2VVRU5tdC10YXVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImY3YTExZTQ5LTE3YjgtNDg4Yi1hMTY0LTFlNjRiYjJhMWJlYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMxOCwiZXhwIjoxNzEyNjgyOTE4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIwZGUzN2Q0LTk5ZmQtNDhiYy1hYzhjLTA5YTMzODJjMWNhMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMxOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.M2F8wJAS191x68Gte8V9FOPqPCbaThzXIVi4ezrvtUFqkOs8wWdOUrllKF6eQUnFGARkSqlPnF468wtz3WMcrolewAqHubFh3LRcgkgKefjP8E_swN5addJm_f2wJgokTUY6T-_XVy2TXiM6F9LS64qgUZfqkJ265t51cqu_LG4YA-q_RGRqADWp3GhivEqPt9X-brrTunO9NoKab_CkJxM1XJVnfVuU9R_oPzSWDu1Gqlee4HM7kGJly-T1y6r1jlVw3vHd9Owxde5PoVaXOpClVI2zXyFr4c6z1oU0ETbroEZCGs2KAy7V8lcGc8yvq6zfxXgLT-01llTf06YuOg' \
    -d '{"name":"My Service Edge Router Policy 508020454306","semantic":"AllOf","serviceAttributes":["#router-3"],"edgeRouterAttributes":["#service-1","#service-5"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1246

{
  "id" : "7a46b115-a796-42e9-8667-c6814a5dc82b",
  "networkId" : "6bb2e291-4e44-46af-982f-32a7cde7aaf7",
  "zitiId" : "ziti.id.6hgc7emh",
  "name" : "My Service Edge Router Policy 508020454306",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ "#router-3" ],
  "edgeRouterAttributes" : [ "#service-1", "#service-5" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdBy" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdAt" : "2024-04-09T16:15:18.344846Z",
  "updatedAt" : "2024-04-09T16:15:18.353807Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6bb2e291-4e44-46af-982f-32a7cde7aaf7",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b",
      "title" : "My Service Edge Router Policy 508020454306"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/6da9ceef-b894-40fc-871d-2ae3d37305c5",
      "title" : "Update ServiceEdgeRouterPolicy",
      "profile" : "meta"
    }
  }
}

Delete Service Edge Router Policy

DELETE /v2/service-edge-router-policies/{id}

Authorization

This endpoint requires delete action on the service-edge-router-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJvaWFfQ2ZyUGNBb2ZfblJ3OVc5R2lnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA2MjJjMWNlLTE4ZTctNGFjOC05MjkyLTRhMGQ5Yjk5OWI2OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMxOCwiZXhwIjoxNzEyNjgyOTE4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNiNDczNzYyLTUzZGItNDYzYi1hOWUzLTcwYTQ2OWQ2ODI1YVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMxOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.mzYrjcO5AlgMVHiWHtMxxtOM_R1OReXmI2RVoafb81kkg3kC4pLSFpJFkEqME02VROBpJEYciiDatuXmox5VBbdh_dKwvcIThDp7FtKoFnhh6VSHOMUcsG9Lq4qUCApJFi-lE1pjZSkjpBTwigPBT3iNZbpsTu7K6fX8xSpTkUoh7wT5AkpbwntYdz8F8eDyY_E8Qf_JxKJBqfj9EmNdI9YUiewWefDFM6ZnbUg3HoY3EvMyp11q9dio6aCINck4RYbLNzzGUoCU56byt1rHzov1r-HO2_jqoy2T5pB6THEoqjdf7qNNS_U-0pDU2f6I5ZtoQ2RkXbZUovFBzA1EJw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1249

{
  "id" : "7a46b115-a796-42e9-8667-c6814a5dc82b",
  "networkId" : "6bb2e291-4e44-46af-982f-32a7cde7aaf7",
  "zitiId" : null,
  "name" : "My Service Edge Router Policy 508020454306",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ ],
  "edgeRouterAttributes" : [ ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdBy" : "00244c21-6e0f-4c5f-88bd-e01ca2dc48e6",
  "createdAt" : "2024-04-09T16:15:18.344846Z",
  "updatedAt" : "2024-04-09T16:15:18.607679Z",
  "deletedBy" : "0622c1ce-18e7-4ac8-9292-4a0d9b999b69",
  "deletedAt" : "2024-04-09T16:15:18.606Z",
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/6bb2e291-4e44-46af-982f-32a7cde7aaf7",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies/7a46b115-a796-42e9-8667-c6814a5dc82b",
      "title" : "My Service Edge Router Policy 508020454306"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/89045dd5-c232-4dd3-9f4e-39a7a0663f68",
      "title" : "Delete ServiceEdgeRouterPolicy",
      "profile" : "meta"
    }
  }
}

Service Policies

Find Service Policies

GET /v2/service-policies

Authorization

This endpoint requires read action on the service-policy resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

zitiId

String

true

name

String

true

type

String

true

Must be one of [Dial, Bind].

semantic

String

true

Must be one of [AllOf, AnyOf].

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

exclusiveType

String

true

Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy].

exclusiveToId

String

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

interceptConflicts

Array[Object]

true

interceptConflicts[].fromServiceId

String

true

interceptConflicts[].fromServiceName

String

true

interceptConflicts[].toServiceId

String

true

interceptConflicts[].toServiceName

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-policies' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3dm5SSDJVdThGd3EyMm1MV3ZBRVlRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjRhMzJjMTY1LTc0ZDQtNDkzZC05ZWJlLWJjMjg1NDcxOGVlNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM1MTU0ZmFlLTM0NWQtNDhlMC1hOGU5LTFiNjY0NWRlNmFlYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Lr1yDumDF_5Mt6v8gOnxF2ASkZHqTpaj_apIViL_onTmCYfpttJ22Pj4ds85YPtNRdPz42kekrYz36w9pm4B4O2pncA1Hr6YHmkCW4awBrHaHdx3cRbMA7kaD1Jydq3Ek6ePu3OJZuZWQivz4V3g71GrCKrshNL5EYEo4zqayhXRrIABjHIuz6esv_whUL1qLn8sbslEj5A52OMkbQm-X2UiFUJprTwbk6109mh8NbyrVbZC06N5hYLEgNaZrflaJuZalQ9WEceW1B2V5gVg1uC53Xwqo6ziOC3HF_rMd6mg2UTWC-GsyCcBHgI9ZQyHJcRAnPd63u1J6POR5VclQA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2749

{
  "_embedded" : {
    "servicePolicyList" : [ {
      "id" : "03406f42-c80c-452c-99e8-0f28bbde7f34",
      "networkId" : "580f4d2e-61cd-4685-ac54-0cbfefc8f148",
      "zitiId" : "ziti.id.64he3l7u",
      "name" : "My Service Policy 479743065086",
      "type" : "Bind",
      "semantic" : "AllOf",
      "serviceAttributes" : [ "#service-1", "#service-5" ],
      "endpointAttributes" : [ "#endpoint-3" ],
      "postureCheckAttributes" : [ "#posture-2", "#posture-3", "#posture-1" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
      "createdBy" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
      "createdAt" : "2024-04-09T16:14:50.103645Z",
      "updatedAt" : "2024-04-09T16:14:50.370831Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "interceptConflicts" : [ ],
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34",
          "title" : "My Service Policy 479743065086"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/580f4d2e-61cd-4685-ac54-0cbfefc8f148",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "5863b5f4-d0c7-4104-9343-977f231c8821",
      "networkId" : "b277ec9c-18b8-44e4-b531-7a4efb0d151f",
      "zitiId" : "ziti.id.64g4bsrb",
      "name" : "My Service Policy 479739722759",
      "type" : "Bind",
      "semantic" : "AllOf",
      "serviceAttributes" : [ "#service-1", "#service-5" ],
      "endpointAttributes" : [ "#endpoint-3" ],
      "postureCheckAttributes" : [ "#posture-2", "#posture-3", "#posture-1" ],
      "exclusiveType" : null,
      "exclusiveToId" : null,
      "ownerIdentityId" : "4df8b81c-93d9-4970-9648-7f1d4e6f0031",
      "createdBy" : "4df8b81c-93d9-4970-9648-7f1d4e6f0031",
      "createdAt" : "2024-04-09T16:14:50.024515Z",
      "updatedAt" : "2024-04-09T16:14:50.272492Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "interceptConflicts" : [ ],
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies/5863b5f4-d0c7-4104-9343-977f231c8821",
          "title" : "My Service Policy 479739722759"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b277ec9c-18b8-44e4-b531-7a4efb0d151f",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Service Policy

GET /v2/service-policies/{id}

Authorization

This endpoint requires read action on the service-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ0NTBmZFJ2LWZvNzU4ZUV0dWh0YkVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImFmMjNjOGE5LThjNWItNDQ5ZC05MGVkLTA4ZTQwNGZmNGJiNiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIzMjFiODQxLWJkOTctNGRmNi04ODBlLTIyMzEzZjNjMzZlYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LhZLXdzQv2bsSM98JS_wAmqP3xvul5S0y9ekTGh-TcQKCFVRwES-unDKPZuyqU0CXpzRvDdLuMi4Kuli_4n356kXXTY3lJP07_g3qofFVYdN6pcPxjaPBCxlIeQLDs37UN59_lNeW1I5hVr-eNrDWmSEP6_rkootw2UP2gqhmd_FjAgCYE2ESQ8HlHovZuiUjIr-MwWCoF2zqQaJaB25Bxb3zInuws4HsZZUMUlRi_9s0KTKG4SlHy0ljbU2W2mQeaHSr67xshfgP3RP8gGzRcngXs2C_p4WQE18n_oB4va8vp_24xe9Eci9VMXhM_bDk6KEihToYjRfQVRBbwOjXw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1118

{
  "id" : "03406f42-c80c-452c-99e8-0f28bbde7f34",
  "networkId" : "580f4d2e-61cd-4685-ac54-0cbfefc8f148",
  "zitiId" : "ziti.id.64he3l7u",
  "name" : "My Service Policy 479743065086",
  "type" : "Dial",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ "#service-2", "#service-1" ],
  "endpointAttributes" : [ "#endpoint-1", "#endpoint-2" ],
  "postureCheckAttributes" : [ "#posture-2", "#posture-1" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdBy" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdAt" : "2024-04-09T16:14:50.103645Z",
  "updatedAt" : "2024-04-09T16:14:50.119369Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "interceptConflicts" : [ ],
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34",
      "title" : "My Service Policy 479743065086"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/580f4d2e-61cd-4685-ac54-0cbfefc8f148",
      "profile" : "parent"
    }
  }
}

Create Service Policy

POST /v2/service-policies

Authorization

This endpoint requires create action on the service-policy resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

type

String

true

Must be one of [Dial, Bind].

semantic

String

true

Must be one of [AllOf, AnyOf].

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-policies' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3ZUtnZVlidTBmSnlPNWdOdE51UWpRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQwOGFkZjQxLTVkZWUtNDNkYy05YjNkLWUxNGNmNzZmNjk1YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFjNTI0ODdkLWRhNzYtNDJjOS04NWZhLTJkMThjNjYzMmJhNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.kB_Kz3WsVShHjn7gVIp7aShUHbvHmjU5c01aSRPFHO7jQeypE_4oj_Bn5NQgWoi8p4fK3Wh6W0t7IPkEWq0B6cgVXfE9T-8BiNTh9VO4EyIsSwt6NFu_Giz8p92tRU3eRw_o-GDD5LD-y7Yma_fV3lgIvc0mNV9uqFja2luQ3DOqj2NYvAW440nuO6XtO5reSkcoIDKweLAO6XlwZD9HlCtSm304afpXR4_aPf9jt7QdI6i2hrfcR72bcpP5Un_Qq7f3C_cEuXqEHEROAeprAq_9t2v7CZXiBp5tqIFRizqqf8Es61p1wbae0ueiLRZ4WI-KlWUKPBOS7tnYGgMwSw' \
    -d '{"networkId":"580f4d2e-61cd-4685-ac54-0cbfefc8f148","name":"My Service Policy 479743065086","type":"Dial","semantic":"AnyOf","serviceAttributes":["#service-1","#service-2"],"endpointAttributes":["#endpoint-1","#endpoint-2"],"postureCheckAttributes":["#posture-1","#posture-2"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 742

{
  "id" : "03406f42-c80c-452c-99e8-0f28bbde7f34",
  "networkId" : "580f4d2e-61cd-4685-ac54-0cbfefc8f148",
  "zitiId" : "ziti.id.64he3l7u",
  "name" : "My Service Policy 479743065086",
  "type" : "Dial",
  "semantic" : "AnyOf",
  "serviceAttributes" : [ "#service-2", "#service-1" ],
  "endpointAttributes" : [ "#endpoint-1", "#endpoint-2" ],
  "postureCheckAttributes" : [ "#posture-2", "#posture-1" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdBy" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdAt" : "2024-04-09T16:14:50.103645Z",
  "updatedAt" : "2024-04-09T16:14:50.119369Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "interceptConflicts" : [ ]
}

Update Service Policy

PATCH /v2/service-policies/{id}

Authorization

This endpoint requires update action on the service-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

type

String

true

Must be one of [Dial, Bind].

semantic

String

true

Must be one of [AllOf, AnyOf].

serviceAttributes

Array[String]

true

endpointAttributes

Array[String]

true

postureCheckAttributes

Array[String]

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ5R0FIbC1pSkVGMjRGeThPeUNfV1F3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhlNGQ4MzRjLTM0OTctNGEzNy1hYzA2LTI2MWY4Mjc0ZWVjYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA4OTRmZmFhLTIwNjItNGZlOC1hZTJiLTlhYjY4ZDcyZDdmOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.mSntOQ7Agh6mYTRXwf8dIMBWTbbAO_L-lTBBahzhrBaeI4oFZqF9LX4bbBAkuYx0YRLr8fn11l4IHGqwGWpt_UZI_BVm3rlVTIpW2_9PHHmhtAonxpEM9UsZSmCKNIdSMBZ0WJOpaEhdMElLQoXsnw83M8PZQjYuhBau2TDET0pa_MMOdOjaD1ENiQY1XcaYcKDmizsky5DruP09I0FG8530ZVKmNht3sH5_Lnudoggmx1cnIYKZFPvCZbA0KsugMlD977TmHBix_2AbP-ngA6nazuMrrXIDGlHzvLdeLZmGCa7ace_57lDLZFTXjpQCOKy0UnHCXthVKdkd7B2MrQ' \
    -d '{"name":"My Service Policy 479743065086","type":"Bind","semantic":"AllOf","serviceAttributes":["#service-1","#service-5"],"endpointAttributes":["#endpoint-3"],"postureCheckAttributes":["#posture-2","#posture-1","#posture-3"]}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1324

{
  "id" : "03406f42-c80c-452c-99e8-0f28bbde7f34",
  "networkId" : "580f4d2e-61cd-4685-ac54-0cbfefc8f148",
  "zitiId" : "ziti.id.64he3l7u",
  "name" : "My Service Policy 479743065086",
  "type" : "Bind",
  "semantic" : "AllOf",
  "serviceAttributes" : [ "#service-1", "#service-5" ],
  "endpointAttributes" : [ "#endpoint-3" ],
  "postureCheckAttributes" : [ "#posture-2", "#posture-3", "#posture-1" ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdBy" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdAt" : "2024-04-09T16:14:50.103645Z",
  "updatedAt" : "2024-04-09T16:14:50.370831Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "interceptConflicts" : [ ],
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34",
      "title" : "My Service Policy 479743065086"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/580f4d2e-61cd-4685-ac54-0cbfefc8f148",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/ca1ea2f3-c82e-4c1a-bba3-24a6bc5f7d9a",
      "title" : "Update ServicePolicy",
      "profile" : "meta"
    }
  }
}

Delete Service Policy

DELETE /v2/service-policies/{id}

Authorization

This endpoint requires delete action on the service-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJMUm1nZUVHQjBuSUxtR2hRdzJ1SEtBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhjNzdlZWViLTQ4MGYtNDI1ZS05YjM0LTZjNDhmODY0NDk3NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVmOTRhMWRmLTI0MTMtNGI4OS1hMmZmLWQxNGM4N2I3OTQwN1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.FU0BBajdunF5cHVt9BLVVP0bv4i3qbFZEL5sKiEXCFrePrbVqTbR4Ths0r1gsj2dYIZWbxalgVABlIwWGJIEvJLRgWZBbHB_JRo2PRyq8-AqNalM7rfS2S9H1sMewR1Fh4vpHZCuixV1ZJV-QzZPvi0DEPqPrnUZhWS_pRTkxbHwRd4pihBqloGDtLXAHkAJyS_vYswBSMIDjVvrrmkSeUP0y19oTbp4v_mhie2yDTBEImmYdfQ2Ajpqo5KQsqQrhOFwqmvlXWvNv5vRKIXASSJZpJn-CY6lpo8VXLJv5cJSuDBP4dfmMjs3in6vRoF_LD3Sng9IVGA1VIRW0ZrqMA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1284

{
  "id" : "03406f42-c80c-452c-99e8-0f28bbde7f34",
  "networkId" : "580f4d2e-61cd-4685-ac54-0cbfefc8f148",
  "zitiId" : null,
  "name" : "My Service Policy 479743065086",
  "type" : "Bind",
  "semantic" : "AllOf",
  "serviceAttributes" : [ ],
  "endpointAttributes" : [ ],
  "postureCheckAttributes" : [ ],
  "exclusiveType" : null,
  "exclusiveToId" : null,
  "ownerIdentityId" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdBy" : "408adf41-5dee-43dc-9b3d-e14cf76f695a",
  "createdAt" : "2024-04-09T16:14:50.103645Z",
  "updatedAt" : "2024-04-09T16:14:50.618595Z",
  "deletedBy" : "8c77eeeb-480f-425e-9b34-6c48f8644975",
  "deletedAt" : "2024-04-09T16:14:50.616Z",
  "interceptConflicts" : [ ],
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/service-policies/03406f42-c80c-452c-99e8-0f28bbde7f34",
      "title" : "My Service Policy 479743065086"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/580f4d2e-61cd-4685-ac54-0cbfefc8f148",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/50e8b5a0-979f-4585-a7ec-93f262c8df75",
      "title" : "Delete ServicePolicy",
      "profile" : "meta"
    }
  }
}

Terminators

Find Terminators

GET /v2/terminators

Authorization

This endpoint requires read action on the terminator resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

zitiId

String

true

serviceId

String

true

routerId

String

true

binding

String

true

Must be one of [edge, edge_transport, transport, transport_udp, tunnel, udp, proxy, proxy_udp].

address

String

true

endpointId

String

true

cost

Integer

true

precedence

String

true

Must be one of [default, required, failed].

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/terminators' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJUZUwtZjVDaF9WT3NkclpxemVaV2dnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJkYTUzMTc4LWMyYWMtNDNhMy04MjIyLTc0MmMzYmMxZDcxMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTIxNywiZXhwIjoxNzEyNjgyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjE0YTIwZGMxLTNmMDUtNGUyOS04MTFlLTUxYWRjYTVhZjdlOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.N7OPgy8QgKk0NpR3sfRwvd6X-4pm7kLi_K0yubRXq8dZRPhfqrApicvEztI_88eSMdGcmb5lUWyI93dXU2zJbuqlVn9AtpdQ-EbYbDv-Y8pn3sKkRH_sE3VmOXxO1mdiIc4UFSgcUP5lsP4GcFZ5_0TQcyNv0IgM_NkCXVIj1nde00ck7wu6Zwm3GztF9q9a7hYI2aCagwRu15Oi6eONMDOQ3iGaaU6yxScaryRkp3ig-UiK3Py4A45H4f0zxmg-hP3J0eM1kLuSaN0CDS0kYp0ao8J7mV3aNsV3Ddgk88lMpYOScJ9cLdklEFmsX6tO0LbOSqYeqL5JZSIpGsrumA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3373

{
  "_embedded" : {
    "terminatorList" : [ {
      "id" : "33681e1f-2158-4093-a59c-5a017c0bbb24",
      "networkId" : "960d271c-ed12-44c2-a367-cff37a7860a4",
      "zitiId" : "yjwNmBse2xh72hjoChzij",
      "serviceId" : "72582dd0-d326-4583-af0a-ec5d0b80dfba",
      "routerId" : "d96cf0bf-d488-40b3-8959-9d4d1b9507bf",
      "binding" : "edge_transport",
      "address" : "1.2.3.4",
      "endpointId" : "0713db5c-fb8a-43dc-9775-c331eecf1564",
      "cost" : 20,
      "precedence" : "default",
      "ownerIdentityId" : "338fc6e6-be6d-4e2e-936e-4ebdf3fbe973",
      "createdBy" : "338fc6e6-be6d-4e2e-936e-4ebdf3fbe973",
      "createdAt" : "2024-04-09T16:13:37.196445Z",
      "updatedAt" : "2024-04-09T16:13:37.197970Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/960d271c-ed12-44c2-a367-cff37a7860a4",
          "profile" : "parent"
        },
        "edge-router" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d96cf0bf-d488-40b3-8959-9d4d1b9507bf"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators/33681e1f-2158-4093-a59c-5a017c0bbb24"
        },
        "service" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services/72582dd0-d326-4583-af0a-ec5d0b80dfba"
        },
        "endpoint" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/0713db5c-fb8a-43dc-9775-c331eecf1564"
        }
      }
    }, {
      "id" : "f3e663e5-acd7-4e35-8e57-122f2d2dcc93",
      "networkId" : "960d271c-ed12-44c2-a367-cff37a7860a4",
      "zitiId" : "E47T9F4bY8rQyRRBWm-Um",
      "serviceId" : "72582dd0-d326-4583-af0a-ec5d0b80dfba",
      "routerId" : "d96cf0bf-d488-40b3-8959-9d4d1b9507bf",
      "binding" : "transport",
      "address" : "1.2.3.4",
      "endpointId" : "0713db5c-fb8a-43dc-9775-c331eecf1564",
      "cost" : 10,
      "precedence" : "required",
      "ownerIdentityId" : "338fc6e6-be6d-4e2e-936e-4ebdf3fbe973",
      "createdBy" : "338fc6e6-be6d-4e2e-936e-4ebdf3fbe973",
      "createdAt" : "2024-04-09T16:13:37.152204Z",
      "updatedAt" : "2024-04-09T16:13:37.195362Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/960d271c-ed12-44c2-a367-cff37a7860a4",
          "profile" : "parent"
        },
        "edge-router" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d96cf0bf-d488-40b3-8959-9d4d1b9507bf"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/terminators/f3e663e5-acd7-4e35-8e57-122f2d2dcc93"
        },
        "service" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/services/72582dd0-d326-4583-af0a-ec5d0b80dfba"
        },
        "endpoint" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/0713db5c-fb8a-43dc-9775-c331eecf1564"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Terminator

GET /v2/terminators/{id}

Authorization

This endpoint requires read action on the terminator resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/terminators/d3f4d942-9077-41c6-a609-5befbf33ba3d' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJmck00bi1UaVlqVS1FYnhIb09aTl9BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZiM2FlMTFiLWY5YTgtNDBhYS1hMGExLWM2MjVkYTgyY2ZkOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE3NiwiZXhwIjoxNzEyNjgyNzc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM3NTlhNmNiLTNjMTAtNGU4Ny1hYWFkLTc1ZGY0NGNhMzY3Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.h9n6ranmmRPOKyD5K1XEgqAN3gAH9vCAd-mH-Ut5RDxyviwFCJq97k0vqXW4XvOIpkarD2ZQ69obS85Hmh_CddbCVMFwtRAax28RhgjOOd--VkQcSDgargEYqAW6CmXZzwKtWhikiGRsK7PbWKKKFiVIxDnzfENEUn19Q6RCG_2bGh6dirA2yfSodHgOpxsAhdVfT7ryPg3qgZtUSZzsYfWKkulDcAnntlz7vWNjOQo-Nfi4LosaXqVtpS1nHhXAaxxTF5vzclw4-jB078fUrnACZddL-5r_yo04RtCTcwAsBW36-HZZnIVHsiMP_eMXPNR-fqDy7svvgoeYtugrNA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1238

{
  "id" : "d3f4d942-9077-41c6-a609-5befbf33ba3d",
  "networkId" : "8c3b6154-448c-4c94-a239-d214d84ee2fd",
  "zitiId" : "ziti.id.4o1v7qag",
  "serviceId" : "2d947b6f-e6c5-44a2-bff2-e4874237a383",
  "routerId" : "4ee03285-38bd-49d3-9ae2-ecf65d21038d",
  "binding" : "transport",
  "address" : "tcp:1.2.3.4:12345",
  "endpointId" : null,
  "cost" : 10,
  "precedence" : "default",
  "ownerIdentityId" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdBy" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdAt" : "2024-04-09T16:12:55.841232Z",
  "updatedAt" : "2024-04-09T16:12:55.988223Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c3b6154-448c-4c94-a239-d214d84ee2fd",
      "profile" : "parent"
    },
    "edge-router" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4ee03285-38bd-49d3-9ae2-ecf65d21038d"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators/d3f4d942-9077-41c6-a609-5befbf33ba3d"
    },
    "service" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services/2d947b6f-e6c5-44a2-bff2-e4874237a383"
    }
  }
}

Create Terminator

POST /v2/terminators

Authorization

This endpoint requires the following actions:

  • create action on the terminator resource type

  • read action on the service resource type

  • read action on the edge-router resource type

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

serviceId

String

true

routerId

String

true

routerName

String

true

binding

String

true

Must be one of [edge, edge_transport, transport, transport_udp, tunnel, udp, proxy, proxy_udp].

address

String

true

endpointId

String

true

cost

Integer

true

precedence

String

true

Must be one of [default, required, failed].

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/terminators' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6QnJHakpCQWg4dUs5TEFlNWEwSFZnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI0Mjg1MDg2LTNlOTUtNGM0My05MDNmLTE3MTVkMmMxNjU2ZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE3NSwiZXhwIjoxNzEyNjgyNzc1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk1MWRlM2I0LTYxMzAtNDVjMS05OGZkLWZmNjIxNTU3MGNlOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3NX0se1wiaWRcIjpcIjIyZGI3ZjUxLWY2MTQtNGRjMy1iZGQwLWIzZmVjM2U4ODJkNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3NX0se1wiaWRcIjpcIjk1YjE1M2Q4LTA4ZDUtNDY0Yi04ZWE1LWVjMDE5NTIxZDQxZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.GDW19g3KPqvFmqO_JoQhwon-8vlDnXGXEHKgG1lafmuE4GDKq6Eul81TRrkf7ZwAbbM71NyTwtrtHFFH9kdNJztM1cXkz3sUnZLdtChZMrK_-ThHnVV7gBVavRwep7aWGrY5wGdIrO0wbqgZ-2-S_KVqoezCz7eqRSln7qi6kohL_j1bPnTeBtMQuqL09GCjYRaIErim755wBp09ICURiHYgLedoncXAoOHDjeHU9x3xYVnaHdDZulN0d90twfrNhNjeqCuxsSX77Twzbm-zBv7YASNUcX0SGGv7zcmevAF3tp2h8D9soj83rbJ8NxMquiNblTk1AuJpgGRny10-ew' \
    -d '{"networkId":"8c3b6154-448c-4c94-a239-d214d84ee2fd","serviceId":"2d947b6f-e6c5-44a2-bff2-e4874237a383","routerId":"4ee03285-38bd-49d3-9ae2-ecf65d21038d","routerName":null,"binding":"transport","address":"tcp:1.2.3.4:12345","endpointId":null,"cost":10,"precedence":"default"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 635

{
  "id" : "d3f4d942-9077-41c6-a609-5befbf33ba3d",
  "networkId" : "8c3b6154-448c-4c94-a239-d214d84ee2fd",
  "zitiId" : "ziti.id.4o1v7qag",
  "serviceId" : "2d947b6f-e6c5-44a2-bff2-e4874237a383",
  "routerId" : "4ee03285-38bd-49d3-9ae2-ecf65d21038d",
  "binding" : "transport",
  "address" : "tcp:1.2.3.4:12345",
  "endpointId" : null,
  "cost" : 10,
  "precedence" : "default",
  "ownerIdentityId" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdBy" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdAt" : "2024-04-09T16:12:55.841232Z",
  "updatedAt" : "2024-04-09T16:12:55.988223Z",
  "deletedBy" : null,
  "deletedAt" : null
}

Delete Terminator

DELETE /v2/terminators/{id}

Authorization

This endpoint requires delete action on the terminator resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/terminators/d3f4d942-9077-41c6-a609-5befbf33ba3d' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5WEUwZHBxRVRacnptRHdYUlFTR1NnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJjZjkwYjA4LWQxMDEtNDI5ZC04N2Q3LTk0YWVkMGU2YTgwOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE3NiwiZXhwIjoxNzEyNjgyNzc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjliYTdkNmFmLTdkMWMtNDQwYS1hMzNkLWY0ZDU5NDY2MzIwM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Qh5FqTL4y3NjOQztfERD9e7lih7HlFEhed3KBzFFDNgfIBr9dfeJRyEyGz6yugnQGoWY_ZnN21_o9ZCm2xY_KFl1ZVdvEHpEi2wY9VqavoOgZAzRcof6_OuQQbWnXIpiod2oO77_n-2bP5FZrE1QzGsJA7lOKzu1E0nQq-epPmLnKvN60BlAZgOWNXqhkgpDfrFTmXM5PNU-enxEoPoXYcW763WwWNCCV1kOV67zSSWPb6Hd08-mUF2YK-2a9_2XQ3d9UOn3WWVZEyIPNNzpefPyWdPotsvb116W3zyIrfa4RPOODqNamLj8PS5NFm9gr5sMg4f2pI9KRN0AWCg8MQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1484

{
  "id" : "d3f4d942-9077-41c6-a609-5befbf33ba3d",
  "networkId" : "8c3b6154-448c-4c94-a239-d214d84ee2fd",
  "zitiId" : null,
  "serviceId" : "2d947b6f-e6c5-44a2-bff2-e4874237a383",
  "routerId" : "4ee03285-38bd-49d3-9ae2-ecf65d21038d",
  "binding" : "transport",
  "address" : "tcp:1.2.3.4:12345",
  "endpointId" : null,
  "cost" : 10,
  "precedence" : "default",
  "ownerIdentityId" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdBy" : "b4285086-3e95-4c43-903f-1715d2c1656f",
  "createdAt" : "2024-04-09T16:12:55.841232Z",
  "updatedAt" : "2024-04-09T16:12:56.648500Z",
  "deletedBy" : "2cf90b08-d101-429d-87d7-94aed0e6a808",
  "deletedAt" : "2024-04-09T16:12:56.644Z",
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/8c3b6154-448c-4c94-a239-d214d84ee2fd",
      "profile" : "parent"
    },
    "edge-router" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4ee03285-38bd-49d3-9ae2-ecf65d21038d"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/terminators/d3f4d942-9077-41c6-a609-5befbf33ba3d"
    },
    "service" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/services/2d947b6f-e6c5-44a2-bff2-e4874237a383"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/c5c7a9e4-babd-4c73-a238-263b702a4498",
      "title" : "Delete Terminator",
      "profile" : "meta"
    }
  }
}

Config

Find Configs

GET /v2/configs

Authorization

This endpoint requires read action on the config resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

name

String

true

configTypeId

String

true

zitiId

String

true

data

Object

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

exclusiveToId

String

true

addressAndPortIndex

Map

true

exclusiveTo

String

true

Deprecated..

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/configs?addressAndPortIndex%5Bingress%5D=bar.netfoundry.io' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJTQkx3Yk1tQzFaaWhUQm90WUVPS0dBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImY2NDFhM2Y1LTQyYzMtNDc1MS1hZjNhLTkyOTMwOTM5NzlkMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI2NCwiZXhwIjoxNzEyNjgyODY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjc1ZmU0ZmQ0LTA3MTItNGI2MS04ZjhmLTU1ZDMxNzI4ZmNhYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.D2PlykuFLICZAO_u9lfvoYfSB-4oXZiDWx3LDrqsPdHESycagwBXEIkmCHGwUlf1dt3Uv2CfYZiZvIA73pb1LNt_qEs0kjT74hLts-pk0SaEiIK_lGB3oqbX-BJbJMZFDJEb159Cpprh-BcS3BNPDFffBXjj30ZmbgIVz5LKcbdXuLlepk47TG4NM6RfU-c7-UMrkeDSitM2hVxxaegmVhvVf-vEYRbX3cy6HFT6Z1naqPAAviEb5GmGWnApndI7G2tLFvSunE2mL0JdIobbVpS2HZXaUkhJox9VcqvnvKpUkthOfTxXClPVl9qMUKI65GIMx4XPG9NjtiADVNy0Cw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1919

{
  "_embedded" : {
    "configList" : [ {
      "id" : "a0a05cd6-89f5-4bd7-9200-6c433717a854",
      "networkId" : "ce303a37-42b8-4444-80b2-8ae1a2e3c677",
      "name" : "Test Config 5",
      "configTypeId" : "0f049bf2-f193-448b-99ea-89ec0d3b3f6f",
      "zitiId" : "ziti-281",
      "data" : {
        "hostname" : "*.netfoundry.io",
        "port" : 9050
      },
      "ownerIdentityId" : "69eae63c-cec2-486b-bb32-d33edba9d10e",
      "createdBy" : "69eae63c-cec2-486b-bb32-d33edba9d10e",
      "createdAt" : "2024-04-09T16:14:24.722989Z",
      "updatedAt" : "2024-04-09T16:14:24.724135Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "exclusiveToId" : null,
      "addressAndPortIndex" : {
        "ingress" : [ {
          "fromPort" : 9050,
          "toPort" : 9050,
          "address" : "*.NETFOUNDRY.IO"
        } ]
      },
      "exclusiveTo" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/configs/a0a05cd6-89f5-4bd7-9200-6c433717a854",
          "title" : "Test Config 5"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ce303a37-42b8-4444-80b2-8ae1a2e3c677",
          "profile" : "parent"
        },
        "configType" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/0f049bf2-f193-448b-99ea-89ec0d3b3f6f",
          "deprecation" : "Use config-type link instead"
        },
        "config-type" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/0f049bf2-f193-448b-99ea-89ec0d3b3f6f"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs?addressAndPortIndex%5Bingress%5D=bar.netfoundry.io"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Config

GET /v2/configs/{id}

Authorization

This endpoint requires read action on the config resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/configs/b0398b91-6c3b-415e-b04e-3f2ff9de888c' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJCOUdjbXd1Ry1Rck91LXNZUHJ6Wml3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhiYTQ2ZDhiLTA3MDctNGEzZC1iNDBhLTQ5MTA2NjBiNzZiOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE5OCwiZXhwIjoxNzEyNjgyNzk4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRhYTVlYjEwLTEwNWItNDhiNS04YTIxLWUyOTA4NTJhMzc2ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.qB89oR8dJAh11Slkgo8PCZlg5Qnzs1zIvTNJ-itPLKDGqnY3wm2GqZafGe6jeVZP9q8wxhSK_RxI4qsJ3juXjXU5WbQ8VdLsgNEuSlPDri-CEeGHqdhVP7lFlUyiv7XOdtK6UM_OPQHUmp6dq-66-blPDvLAR4O6y3NSAUUd2lUD_J-Gn0A5WxCY2-dblXxZ7U8e7PwwxmjqekiXsi8vSF0eW1u5wKXK7Nmr_86r2JL3jLEpK2izgRbukDNNQf9s6DIR3zRumHVCYpkl6Os5it41xKdjuvk3L51ub4Rh7T5Aix6qLQN644d4oMC_H2BcA9gTpjBI-3aAmjJUt2sHwA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1341

{
  "id" : "b0398b91-6c3b-415e-b04e-3f2ff9de888c",
  "networkId" : "98cad6aa-3fed-4e53-875c-84064c86b00d",
  "name" : "My Config 385600653128",
  "configTypeId" : "c139b98e-daf8-45d5-99ec-ff6457e3cae2",
  "zitiId" : "ziti.id.4yaf3e3o",
  "data" : {
    "hostname" : "abc.com",
    "port" : 11222
  },
  "ownerIdentityId" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdBy" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdAt" : "2024-04-09T16:13:18.263940Z",
  "updatedAt" : "2024-04-09T16:13:18.274021Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "exclusiveToId" : null,
  "addressAndPortIndex" : null,
  "exclusiveTo" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs/b0398b91-6c3b-415e-b04e-3f2ff9de888c",
      "title" : "My Config 385600653128"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/98cad6aa-3fed-4e53-875c-84064c86b00d",
      "profile" : "parent"
    },
    "configType" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/c139b98e-daf8-45d5-99ec-ff6457e3cae2",
      "deprecation" : "Use config-type link instead"
    },
    "config-type" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/c139b98e-daf8-45d5-99ec-ff6457e3cae2"
    }
  }
}

Create Config

POST /v2/configs

Authorization

This endpoint requires the following actions:

  • create action on the config resource type

  • create action on the config-type resource type

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

configTypeId

String

true

configTypeName

String

true

configType

Object

true

configType.networkId

String

true

configType.name

String

true

configType.schema

Object

true

data

Object

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/configs' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ3MHVaUDkwTUZZSDdUTlJITWIybERBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMzNDUyMjVhLTg3MzItNGM3MS1iODQzLTI4NTk2M2UyMmU1NyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE5OCwiZXhwIjoxNzEyNjgyNzk4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRiODc3MTg2LTdkNDAtNDI0YS04NjU1LTJjZGZlNmJhNjJjM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5OH0se1wiaWRcIjpcImUwZjhjMTU3LTQ5NWUtNDlkNi1iNjkwLTM1YjUwMjNjMDRhOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JFyuYqMGvf6WR4_wBhfVQpqiCHevjei24zIJA5SpLdXqCMmQSyFMp3n5mFv62IK-i5kYer-A6aFEl4pnaWB81PG1rgNoX7kSlXRiHiWWPVnVW3fAsdKMmPE7RKP7Gc4DmjpILk5gAJCyvW7hZKLfKyh6XDAemgnMM5CDPFvjwF3qa_2FfOy4RR8FJ11IsJIwG7M5W8b8QBS4ETuzIQy8MHxGAatpwQ2NCA9IMOmk9CwOFeVe_BBoJbUJfu-N8ZRKfB9vJ1TO88vhKuRC7qQs3Px4-p6xHAjdzSgAeK3FV_fZ3caJz6W65E33Cp5lRVz-GREAtdhsJ_L1Y5hXS7zAcQ' \
    -d '{"networkId":"98cad6aa-3fed-4e53-875c-84064c86b00d","name":"My Config 385600653128","configTypeId":null,"configTypeName":"ziti-tunneler-client.v1","configType":null,"data":{"hostname":"abc.com","port":11222}}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 639

{
  "id" : "b0398b91-6c3b-415e-b04e-3f2ff9de888c",
  "networkId" : "98cad6aa-3fed-4e53-875c-84064c86b00d",
  "name" : "My Config 385600653128",
  "configTypeId" : "c139b98e-daf8-45d5-99ec-ff6457e3cae2",
  "zitiId" : "ziti.id.4yaf3e3o",
  "data" : {
    "hostname" : "abc.com",
    "port" : 11222
  },
  "ownerIdentityId" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdBy" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdAt" : "2024-04-09T16:13:18.263940Z",
  "updatedAt" : "2024-04-09T16:13:18.274021Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "exclusiveToId" : null,
  "addressAndPortIndex" : null,
  "exclusiveTo" : null
}

Delete Config

DELETE /v2/configs/{id}

Authorization

This endpoint requires delete action on the config resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/configs/b0398b91-6c3b-415e-b04e-3f2ff9de888c' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJuaTdaaUxPU1ZKWjBrQ0pUSG9yaFdnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU4YjIzOTEwLTg4N2MtNDhjOC1hZmVlLTNlMjBlZDg1YTkyZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE5OSwiZXhwIjoxNzEyNjgyNzk5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjliNzNkYTJhLTI3ODMtNDA4NC04NTIwLTQ0NDkzZTQ1ZGM0MVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE5OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.oVNmD3OL7H_DzjfbUdNcSChli9Hchz8huBJOQF_UgzbXNQ0T9xpc7hNB_5rBhBgkDk4tmCJfdn9KjhEXkH1OmNqFEpeUtYOhkgoUrXiX4WnjYnNN23iwdhm4jA0xEgQR5CYcl21giM6hZml3LDxSmae6Ks2fGA5YoRDyHqKZOrqo5bLOuel39P5Po_BQYSd-bzqFh4jMGFgg1JnZIkBOX7XIX9axDbVI9CcVQt1t9gGtC8-BkPxU5MURb6p5Ry8mSsMwEkSp1PwvnXrU4aqloQg2IlhFzf1-je43P09n6zYs669UMKPWxCPq88QkHnpCRxgHKQ75pT15ONOaHPYN6Q'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1583

{
  "id" : "b0398b91-6c3b-415e-b04e-3f2ff9de888c",
  "networkId" : "98cad6aa-3fed-4e53-875c-84064c86b00d",
  "name" : "My Config 385600653128",
  "configTypeId" : "c139b98e-daf8-45d5-99ec-ff6457e3cae2",
  "zitiId" : null,
  "data" : {
    "hostname" : "abc.com",
    "port" : 11222
  },
  "ownerIdentityId" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdBy" : "c345225a-8732-4c71-b843-285963e22e57",
  "createdAt" : "2024-04-09T16:13:18.263940Z",
  "updatedAt" : "2024-04-09T16:13:19.562304Z",
  "deletedBy" : "e8b23910-887c-48c8-afee-3e20ed85a92f",
  "deletedAt" : "2024-04-09T16:13:19.553Z",
  "exclusiveToId" : null,
  "addressAndPortIndex" : null,
  "exclusiveTo" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/configs/b0398b91-6c3b-415e-b04e-3f2ff9de888c",
      "title" : "My Config 385600653128"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/98cad6aa-3fed-4e53-875c-84064c86b00d",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/f48b6172-9e6a-4109-b521-00bc971fe253",
      "title" : "Delete Config",
      "profile" : "meta"
    },
    "configType" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/c139b98e-daf8-45d5-99ec-ff6457e3cae2",
      "deprecation" : "Use config-type link instead"
    },
    "config-type" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/c139b98e-daf8-45d5-99ec-ff6457e3cae2"
    }
  }
}

Config Type

Find Config Types

GET /v2/config-types

Authorization

This endpoint requires read action on the config-type resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

name

String

true

zitiId

String

true

schema

Object

true

ownerIdentityId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

exclusiveToId

String

true

reserved

Boolean

true

exclusiveTo

String

true

Deprecated..

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/config-types' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJrRnBJeXlOUTR6a2pwd1E3aE9paFlnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI0ODIzZGZmLTcwNTgtNDE5Mi1hNDJiLTFiMGMyMzFiZDdlYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyOSwiZXhwIjoxNzEyNjgyOTI5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjVkZjRjMjFkLTBjMzEtNDc0OC1iZWVmLTc2YThmNmVjMzUxOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JFiVEc_fRomOxcU5fLj41I-Mt5IQ6OI38GlLPQ-APBMPJMoRhD2kHEy0nPawOQm89x8hGlQaceMOShy9gghNX0CvH8iKxhh9Hh34HzW7S3XliXz3d09XdbThAuLQGepcwQ6iXgtHbXcN1TsTt1LnTAGiW24Kzyg2QnG306j9cJ-lcY8xZdrI7kqTVT0KHIfMCyy6iU07rD9BVMx8j9j5GYypOrRPMzdzUoEs9j0umvSobB77gbA29qaGf5eSd7C4E6Ir0mlylSZOqgFkqSQwiUOoPJMrtkarJ83oIvUP2Ld1YVm9gqD9m4e0OuyDFYvXuogyiSPniajTOvNK-LkD8g'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2816

{
  "_embedded" : {
    "configTypeList" : [ {
      "id" : "2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
      "networkId" : "ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
      "name" : "My ConfigType 518598448629",
      "zitiId" : "ziti.id.6mcgh50b",
      "schema" : {
        "type" : "object",
        "properties" : {
          "number" : {
            "type" : "number"
          },
          "street_name" : {
            "type" : "string"
          },
          "street_type" : {
            "type" : "string",
            "enum" : [ "Street", "Avenue", "Boulevard" ]
          }
        }
      },
      "ownerIdentityId" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
      "createdBy" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
      "createdAt" : "2024-04-09T16:15:28.997043Z",
      "updatedAt" : "2024-04-09T16:15:29.002963Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "reserved" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
          "title" : "My ConfigType 518598448629"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "3c74caa6-2488-4633-a0d2-376ea21799ab",
      "networkId" : "a1942bed-bb02-4f02-b247-25befa7a53f9",
      "name" : "My ConfigType 518595858952",
      "zitiId" : "ziti.id.6madmk5d",
      "schema" : {
        "type" : "object",
        "properties" : {
          "number" : {
            "type" : "number"
          },
          "street_name" : {
            "type" : "string"
          },
          "street_type" : {
            "type" : "string",
            "enum" : [ "Street", "Avenue", "Boulevard" ]
          }
        }
      },
      "ownerIdentityId" : "dfeb9f19-b86a-42cf-a3cc-d9c9317656d3",
      "createdBy" : "dfeb9f19-b86a-42cf-a3cc-d9c9317656d3",
      "createdAt" : "2024-04-09T16:15:28.868706Z",
      "updatedAt" : "2024-04-09T16:15:28.877299Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "reserved" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/3c74caa6-2488-4633-a0d2-376ea21799ab",
          "title" : "My ConfigType 518595858952"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a1942bed-bb02-4f02-b247-25befa7a53f9",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Config Type

GET /v2/config-types/{id}

Authorization

This endpoint requires read action on the config-type resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/config-types/2843ddd1-6581-4f6c-bd70-f0ae539c68ee' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5OVNmNHd1WVFVRGxLeW5TWDVuUWpBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijg0YzdjYjFjLWE2MjMtNDMxYi04NDM3LTBhNzEzZjlkOGYyMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyOSwiZXhwIjoxNzEyNjgyOTI5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY0ZTk5NjE2LTllNzEtNDZhNi05NDg0LTMwOWQwY2M1OTkyY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.CoTCD4AY6V7iRAlonGET1iGrA0LN1cN4xZxUqNLtRlaYtdLxzVE08mNifAFbSdztnS2EmS4Ew31clqgTgxMrT4IW8JXRg4phWbxEfsDh4bw_nTcKnMMDkVIjq9YE57f7lopWIDNrCrrw7Ngfl8uQsq4oWznqrqYWdkCEdarWpIVrcfgO8Dx5QckWaVWIB8ILeUE6Hj03zDPbWI7-MxkE8UwVpzxW079v3kzfSKcYyV4X5Sg2smNhccWj03I1ilSfbLLqaF3Qq_m6ow23Gn7yhSoEQxufFrnmTxCm_IAwOIBZTWfkXTIkiOj3kdJeiD2hK3WdfFtDcVYgt4UVUxH2LQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1122

{
  "id" : "2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
  "networkId" : "ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
  "name" : "My ConfigType 518598448629",
  "zitiId" : "ziti.id.6mcgh50b",
  "schema" : {
    "type" : "object",
    "properties" : {
      "number" : {
        "type" : "number"
      },
      "street_name" : {
        "type" : "string"
      },
      "street_type" : {
        "type" : "string",
        "enum" : [ "Street", "Avenue", "Boulevard" ]
      }
    }
  },
  "ownerIdentityId" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdBy" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdAt" : "2024-04-09T16:15:28.997043Z",
  "updatedAt" : "2024-04-09T16:15:29.002963Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "reserved" : false,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
      "title" : "My ConfigType 518598448629"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
      "profile" : "parent"
    }
  }
}

Create Config Type

POST /v2/config-types

Authorization

This endpoint requires create action on the config-type resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

schema

Object

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/config-types' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJSTnAxZjZidUVLQ0E5XzhBTzBMNE5BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhkYTQ4MjY5LTNlNTAtNGMwMC1hOGQzLTQ0YjRlZjI4NTA0ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyOCwiZXhwIjoxNzEyNjgyOTI4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjI3NmU0Yzc2LTlkYzktNGY4OS1iYjJkLWJmYWQ0ZDlmMTVlYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.VVsgXXvNp2Ptkyjq6qkeMS4JrMvh8u8JRQZ9C3LASOXtv5cFOr5Ce6mfcUEadwwCD4nsH8HkD01GLvZCILNb4-_xo3tMD00fJTsv1N3MA3-Y0CLGu-ZqOAPzJTIKD5sl_79bxigsz0pnhnQGSTkenP6bhBH7TnCCoQiMkdsM82xyjGG80bUwUsoDL9XV_bmgFO2S8_--pK09n1pFrpr53UYOWS5YPjJCvB6G9ovT6hDlIzNrGqzYsF3jSuMgmXRh4JlFF22eRsFoIMhk6Bn4ndsCr-EIQPHY_GWiYFsoHhqvki96TrvjdCBE-Faygdim3yT4k9ItwWwt8t5aPg3N5Q' \
    -d '{"networkId":"ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9","name":"My ConfigType 518598448629","schema":{"type":"object","properties":{"number":{"type":"number"},"street_name":{"type":"string"},"street_type":{"type":"string","enum":["Street","Avenue","Boulevard"]}}}}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 754

{
  "id" : "2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
  "networkId" : "ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
  "name" : "My ConfigType 518598448629",
  "zitiId" : "ziti.id.6mcgh50b",
  "schema" : {
    "type" : "object",
    "properties" : {
      "number" : {
        "type" : "number"
      },
      "street_name" : {
        "type" : "string"
      },
      "street_type" : {
        "type" : "string",
        "enum" : [ "Street", "Avenue", "Boulevard" ]
      }
    }
  },
  "ownerIdentityId" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdBy" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdAt" : "2024-04-09T16:15:28.997043Z",
  "updatedAt" : "2024-04-09T16:15:29.002963Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "reserved" : false
}

Delete Config Type

DELETE /v2/config-types/{id}

Authorization

This endpoint requires delete action on the config-type resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/config-types/2843ddd1-6581-4f6c-bd70-f0ae539c68ee' -i -X DELETE \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJab19pWEJibGFVMFdIa0pvS3VLNUVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImZiM2I2ZTUxLWMxYWItNDY3MS1iNzM4LWQxNjk2MDAzOTdlYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyOSwiZXhwIjoxNzEyNjgyOTI5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjdmYjhiMjcxLWY1OWYtNDU3Ny05MWJhLTYyZmRlODM5Y2U2NFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.EkyFeAx1Up7TKUYYmI7TwfhlfqTrf0fBbtKrgRGbbu8_bYVVJbTXEm5JWq6Bb2LPYfdS-Z1UrEIGNvZo57UpYZC_3tFhx2wyRgJWevPjammLnedGLwdDkK0Z6fGxGP0dFq0HsW95LhAIbjvB24f3rQEif826rXo3EU3uOsC6qr2HP1DYKeQEX6Fjo7xo2H5Ezmr1ienRLqXPr-OR8QsoaJhI7WM2GzTQCA1b2zKYmMPOA4NdQOkz2s3eW81gWcYwlAwshOCDyvimkZiuSgFajPcHzBfY949GRtn4g3OOe795_JZwSXiXX0JiOpdmLsiiyqpNtFxJWAz3sSZ_0M5KLQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1368

{
  "id" : "2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
  "networkId" : "ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
  "name" : "My ConfigType 518598448629",
  "zitiId" : null,
  "schema" : {
    "type" : "object",
    "properties" : {
      "number" : {
        "type" : "number"
      },
      "street_name" : {
        "type" : "string"
      },
      "street_type" : {
        "type" : "string",
        "enum" : [ "Street", "Avenue", "Boulevard" ]
      }
    }
  },
  "ownerIdentityId" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdBy" : "8da48269-3e50-4c00-a8d3-44b4ef28504d",
  "createdAt" : "2024-04-09T16:15:28.997043Z",
  "updatedAt" : "2024-04-09T16:15:29.198143Z",
  "deletedBy" : "fb3b6e51-c1ab-4671-b738-d169600397ea",
  "deletedAt" : "2024-04-09T16:15:29.196Z",
  "reserved" : false,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/config-types/2843ddd1-6581-4f6c-bd70-f0ae539c68ee",
      "title" : "My ConfigType 518598448629"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ba16fbf8-fd6b-47fe-af0d-1abf8eb5d9d9",
      "profile" : "parent"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/63b1423a-d7c9-4d10-a5c0-aa4e93d5ab9b",
      "title" : "Delete ConfigType",
      "profile" : "meta"
    }
  }
}

Auth Policy

Find Auth Policies

GET /v2/auth-policies

Authorization

This endpoint requires read action on the auth-policy resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/auth-policies?id=be08b876-cdac-4f2a-b90f-5d0419417405' -i -X GET \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJfSHF4MHJOLV9JcHpyT0JHVGJGRjJRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjFjMzg0NDZjLWZkYTctNGNmMi1iMzUxLTM5OTI3ZjNlZjMwYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMwNywiZXhwIjoxNzEyNjgyOTA3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZiMTg2M2NhLWJlMGUtNGI4Zi1iMzY1LThkNTkzNDYwN2U3NVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.bp-3D4Mw4zD_PQBNNa5hB6AZVPaOfBGXuvruxixx29DkesT8hQiL2P7Nk2zq1sZKEj_Pqr6fKgdhtjujRqMHA513QyH3Qqivq_qs3apYPnUavUE7_ax-6LE2FoxmJ105D3agyXIZAE6WMGFCKA70Vn0cFlpCwLjWIIvdRY_N0JT4MeAmfBpsk_Ac4sAveRMssR4xliwObV4nAfcyoM9teKBh_1kXKBuzvK95WRHzitowtpSJxag1kQ_OjQHy9F_oQQH0w0C5PL2C5ap6RBoqsQCHjZyQtK2ti7aTE31GCaLHUJKtTmVGDbGAhDg9LyIVp8h-TtmLAXL2Fj2U2AmVYA'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1059

[ {
  "id" : "be08b876-cdac-4f2a-b90f-5d0419417405",
  "networkId" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
  "zitiId" : "ziti.id.695fhaqd",
  "name" : "Updated Test AuthPolicy",
  "primary" : {
    "cert" : {
      "allowed" : false,
      "allowExpiredCerts" : true
    },
    "extJwt" : {
      "allowed" : false,
      "allowedSigners" : [ "bf39cffa-df50-4d6c-a9d3-da7de505d380", "942522fd-a71d-469a-b8b0-faf2d29513b4" ]
    },
    "updb" : {
      "allowed" : true,
      "lockoutDurationMinutes" : 6,
      "maxAttempts" : 4,
      "minPasswordLength" : 9,
      "requireMixedCase" : false,
      "requireNumberChar" : false,
      "requireSpecialChar" : false
    }
  },
  "secondary" : {
    "requireExtJwtSigner" : "a843b288-d9a2-4c53-be66-2857b6e1d6e4",
    "requireTotp" : true
  },
  "createdBy" : "a857a46b-d0e4-497b-a216-a9b5baebad22",
  "createdAt" : "2024-04-09T16:15:00.271534Z",
  "updatedAt" : "2024-04-09T16:15:06.898410Z",
  "appliedAt" : "2024-04-09T16:15:06.898410Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
} ]

Get Auth Policy

GET /v2/auth-policies/{id}

Authorization

This endpoint requires read action on the auth-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/auth-policies/be08b876-cdac-4f2a-b90f-5d0419417405?meta=ziti,diffZiti' -i -X GET \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJMOTZ5R05kTGg2VkFLOHBIbWtuZy1nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImNhYzRjZDU1LTY2ZjYtNGE1OC04NzFhLTJkNjcyMWQxMzVlMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMwNiwiZXhwIjoxNzEyNjgyOTA2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjc5M2FjZjNhLTc3N2YtNDFlMi1iNDU3LTM0YTc1N2YxY2MzZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.kYNT6iaVaQ6sVrmYBdDkji28Kxp14QyvI9qRcuVbBttXghKBm04ZSssuJLVLKblWN3PgVgmu_pKIjT_jPNA8pH9LelzY-HwXidnmsfyYvqCCKaCaOFuOXmDRX5SvpAFkrk750PblhJ4rsXeyvBdl2Sz1JewqAId16-m0j7uTG2TQGLwSuOPb1ZYSHVIasANqFeXnm1zuRf7DxgDdqqSmWpanRiYwG1NpDWBwXlk2rUlBLPL4Y6f4qyWFbmvaVf6bk5pSwq_xTlnc7B6rd3_8iKJjHXpt-nWXdOVbQUbpzKyQ5bGD_ihTciYHld9nYTNoktorj2d6K3Uk5veODT13Tw'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2916

{
  "id" : "be08b876-cdac-4f2a-b90f-5d0419417405",
  "networkId" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
  "zitiId" : "ziti.id.695fhaqd",
  "name" : "Test AuthPolicy",
  "primary" : {
    "cert" : {
      "allowed" : true,
      "allowExpiredCerts" : false
    },
    "extJwt" : {
      "allowed" : true,
      "allowedSigners" : [ "1a4e8497-4688-4cf9-abf0-0115d4baa411" ]
    },
    "updb" : {
      "allowed" : false,
      "lockoutDurationMinutes" : 5,
      "maxAttempts" : 3,
      "minPasswordLength" : 8,
      "requireMixedCase" : true,
      "requireNumberChar" : true,
      "requireSpecialChar" : true
    }
  },
  "secondary" : {
    "requireExtJwtSigner" : null,
    "requireTotp" : false
  },
  "createdBy" : "a857a46b-d0e4-497b-a216-a9b5baebad22",
  "createdAt" : "2024-04-09T16:15:00.271534Z",
  "updatedAt" : "2024-04-09T16:15:00.280208Z",
  "appliedAt" : "2024-04-09T16:15:00.280208Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false,
  "_meta" : {
    "ziti" : {
      "id" : "ziti.id.695fhaqd",
      "name" : "Test AuthPolicy",
      "primary" : {
        "cert" : {
          "allowExpiredCerts" : false,
          "allowed" : true
        },
        "extJwt" : {
          "allowed" : true,
          "allowedSigners" : [ "ziti-id-1822" ]
        },
        "updb" : {
          "allowed" : false,
          "lockoutDurationMinutes" : 5,
          "maxAttempts" : 3,
          "minPasswordLength" : 8,
          "requireMixedCase" : true,
          "requireNumberChar" : true,
          "requireSpecialChar" : true
        }
      },
      "secondary" : {
        "requireExtJwtSigner" : null,
        "requireTotp" : false
      },
      "tags" : {
        "network-id" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
        "resource-id" : "be08b876-cdac-4f2a-b90f-5d0419417405"
      },
      "createdAt" : "2024-04-09T16:15:00.279756827Z",
      "updatedAt" : "2024-04-09T16:15:00.279757727Z"
    }
  },
  "meta" : {
    "ziti" : {
      "id" : "ziti.id.695fhaqd",
      "name" : "Test AuthPolicy",
      "primary" : {
        "cert" : {
          "allowExpiredCerts" : false,
          "allowed" : true
        },
        "extJwt" : {
          "allowed" : true,
          "allowedSigners" : [ "ziti-id-1822" ]
        },
        "updb" : {
          "allowed" : false,
          "lockoutDurationMinutes" : 5,
          "maxAttempts" : 3,
          "minPasswordLength" : 8,
          "requireMixedCase" : true,
          "requireNumberChar" : true,
          "requireSpecialChar" : true
        }
      },
      "secondary" : {
        "requireExtJwtSigner" : null,
        "requireTotp" : false
      },
      "tags" : {
        "network-id" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
        "resource-id" : "be08b876-cdac-4f2a-b90f-5d0419417405"
      },
      "createdAt" : "2024-04-09T16:15:00.279756827Z",
      "updatedAt" : "2024-04-09T16:15:00.279757727Z"
    }
  }
}

Create Auth Policy

POST /v2/auth-policies

Authorization

This endpoint requires the following actions:

  • create action on the auth-policy resource type

  • read action on the external-jwt-signer resource type

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

primary

Object

true

primary.cert

Object

true

primary.cert.allowed

Boolean

true

primary.cert.allowExpiredCerts

Boolean

true

primary.extJwt

Object

true

primary.extJwt.allowed

Boolean

true

primary.extJwt.allowedSigners

Array[Object]

true

primary.updb

Object

true

primary.updb.allowed

Boolean

true

primary.updb.lockoutDurationMinutes

Integer

true

primary.updb.maxAttempts

Integer

true

primary.updb.minPasswordLength

Integer

true

primary.updb.requireMixedCase

Boolean

true

primary.updb.requireNumberChar

Boolean

true

primary.updb.requireSpecialChar

Boolean

true

secondary

Object

true

secondary.requireExtJwtSigner

String

true

secondary.requireTotp

Boolean

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/auth-policies' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJyNzBCVWlWNHVfUE9DX2E5N0hDRV9nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImE4NTdhNDZiLWQwZTQtNDk3Yi1hMjE2LWE5YjViYWViYWQyMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMwMCwiZXhwIjoxNzEyNjgyOTAwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImZjOTQ4YzliLTI2NzAtNDZiMS05N2QzLTA5MTEyNzIxZDM5NFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwMH0se1wiaWRcIjpcIjAzMmVhYzE0LTJhMjYtNDA5Yi1iZWVjLTQ3M2YwMWZiYzhlNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwMH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.KVFI60BULLr1U_vKVwLTcusnboEwJFLWpWgt1zmm2JrNml2IX2WJzFTA9zM_fodpdDmt2YO1fSnjyYkgCTin2Us5_qhQNjYsBLJhVN4tw1nT6bvWazSjzI7JV1sBp8AD9a0H_iOIQWH9T6zHpyY-FFqe6TMjU4CfSpkbYzR8OGSk8V2E34m4tC5Lam_m6_1eZNJknFmp7lx97hCJP6PvVrf8GIEjAUkS_ZNFai-pfrPb8vuZkqXiVZ7F-wVYDK51vTlqihpJRe_4mKb9tluP0v4-EE7uotdCnz5j0hb-IHxCOfHPhHsJEj7aUgwWgFukqbUPQ-3ueYDESZjcFWdCSA' \
    -d '{"networkId":"a6b84195-a187-47d6-b816-6f4fd428bdab","name":"Test AuthPolicy","primary":{"cert":{"allowed":true,"allowExpiredCerts":false},"extJwt":{"allowed":true,"allowedSigners":["1a4e8497-4688-4cf9-abf0-0115d4baa411"]},"updb":{"allowed":false,"lockoutDurationMinutes":5,"maxAttempts":3,"minPasswordLength":8,"requireMixedCase":true,"requireNumberChar":true,"requireSpecialChar":true}},"secondary":{"requireExtJwtSigner":null,"requireTotp":false}}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 971

{
  "id" : "be08b876-cdac-4f2a-b90f-5d0419417405",
  "networkId" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
  "zitiId" : "ziti.id.695fhaqd",
  "name" : "Test AuthPolicy",
  "primary" : {
    "cert" : {
      "allowed" : true,
      "allowExpiredCerts" : false
    },
    "extJwt" : {
      "allowed" : true,
      "allowedSigners" : [ "1a4e8497-4688-4cf9-abf0-0115d4baa411" ]
    },
    "updb" : {
      "allowed" : false,
      "lockoutDurationMinutes" : 5,
      "maxAttempts" : 3,
      "minPasswordLength" : 8,
      "requireMixedCase" : true,
      "requireNumberChar" : true,
      "requireSpecialChar" : true
    }
  },
  "secondary" : {
    "requireExtJwtSigner" : null,
    "requireTotp" : false
  },
  "createdBy" : "a857a46b-d0e4-497b-a216-a9b5baebad22",
  "createdAt" : "2024-04-09T16:15:00.271534Z",
  "updatedAt" : "2024-04-09T16:15:00.280208Z",
  "appliedAt" : "2024-04-09T16:15:00.280208Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
}

Update Auth Policy

PATCH /v2/auth-policies/{id}

Authorization

This endpoint requires the following actions:

  • update action on the auth-policy resource type

  • read action on the external-jwt-signer resource type

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

primary

Object

true

primary.cert

Object

true

primary.cert.allowed

Boolean

true

primary.cert.allowExpiredCerts

Boolean

true

primary.extJwt

Object

true

primary.extJwt.allowed

Boolean

true

primary.extJwt.allowedSigners

Array[Object]

true

primary.updb

Object

true

primary.updb.allowed

Boolean

true

primary.updb.lockoutDurationMinutes

Integer

true

primary.updb.maxAttempts

Integer

true

primary.updb.minPasswordLength

Integer

true

primary.updb.requireMixedCase

Boolean

true

primary.updb.requireNumberChar

Boolean

true

primary.updb.requireSpecialChar

Boolean

true

secondary

Object

true

secondary.requireExtJwtSigner

Object

true

secondary.requireTotp

Boolean

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/auth-policies/be08b876-cdac-4f2a-b90f-5d0419417405' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJrdGpzM3hZNjR6bEZ4bjVvQVo2NG5RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM2ZjgwMGUyLTBkZDYtNDQ3ZC1iOTY1LWYyZDc3MmI3ZGQxMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMwNiwiZXhwIjoxNzEyNjgyOTA2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM4NzUwOTMzLWMxNmItNDkxMi1hYjdhLTViYjhiOTYwODRlMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwNn0se1wiaWRcIjpcIjM3NWY4ZjU1LWJjNTYtNDM5OC1hYmVhLTMxMDE4MWYzYjM4ZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.e_r1rCqj-NpnGOwA8eOCiz-0zfqferMJ4oFD0EUehLj0J4qvh8RD3tud9KCL17uI-XEHmpTcyxPM7EkL6WvP9XIuOvyaGabe7yWPerdyvOThG03ZdYvT3yI8uq1M9hnKeUl1jRwJbBh0zRLEcYQDAsf_EsrzHG5yPAx9gPVNsvwixKGrqiwOjVoPR0SfKUG2I4vMiea3LR-vIFxrNLWggKb5uiahMuFgVrEn-kWLIX8gggDs1lEHUi2zTMYbZRnvS4P2ilouWNYE3EnQONADWIR7k2ynLDczv_SMhjS6Oe-AbYOQEANQSQQBMoD1tck5iGcI7IMcwaKFCIxDAugURA' \
    -d '{"name":"Updated Test AuthPolicy","primary":{"cert":{"allowed":false,"allowExpiredCerts":true},"extJwt":{"allowed":false,"allowedSigners":["bf39cffa-df50-4d6c-a9d3-da7de505d380","942522fd-a71d-469a-b8b0-faf2d29513b4"]},"updb":{"allowed":true,"lockoutDurationMinutes":6,"maxAttempts":4,"minPasswordLength":9,"requireMixedCase":false,"requireNumberChar":false,"requireSpecialChar":false}},"secondary":{"requireExtJwtSigner":"a843b288-d9a2-4c53-be66-2857b6e1d6e4","requireTotp":true}}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1055

{
  "id" : "be08b876-cdac-4f2a-b90f-5d0419417405",
  "networkId" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
  "zitiId" : "ziti.id.695fhaqd",
  "name" : "Updated Test AuthPolicy",
  "primary" : {
    "cert" : {
      "allowed" : false,
      "allowExpiredCerts" : true
    },
    "extJwt" : {
      "allowed" : false,
      "allowedSigners" : [ "bf39cffa-df50-4d6c-a9d3-da7de505d380", "942522fd-a71d-469a-b8b0-faf2d29513b4" ]
    },
    "updb" : {
      "allowed" : true,
      "lockoutDurationMinutes" : 6,
      "maxAttempts" : 4,
      "minPasswordLength" : 9,
      "requireMixedCase" : false,
      "requireNumberChar" : false,
      "requireSpecialChar" : false
    }
  },
  "secondary" : {
    "requireExtJwtSigner" : "a843b288-d9a2-4c53-be66-2857b6e1d6e4",
    "requireTotp" : true
  },
  "createdBy" : "a857a46b-d0e4-497b-a216-a9b5baebad22",
  "createdAt" : "2024-04-09T16:15:00.271534Z",
  "updatedAt" : "2024-04-09T16:15:06.898410Z",
  "appliedAt" : "2024-04-09T16:15:06.898410Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
}

Delete Auth Policy

DELETE /v2/auth-policies/{id}

Authorization

This endpoint requires delete action on the auth-policy resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/auth-policies/be08b876-cdac-4f2a-b90f-5d0419417405' -i -X DELETE \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIzTWtTcVBCYzNfZVlQSGFkWm4xQ1dBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQyODdlMzQ5LTMyNTQtNDRkNy04Yjc5LTIxNTMwN2FlMGE1MSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMwNywiZXhwIjoxNzEyNjgyOTA3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjFjMmVmMzI5LWZhMDMtNDgyZS1iMDljLWMxZTc2ZWIyMDJiMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMwN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.RXKEyzC2EaxN403jedTEwblYrzF8LptzFixDg51Ug1keusuB9Hm4ed3Hqok3-v3tlaqHIxkhRaY0lKmpy3oKVh7U_fIOecbhWloZrAoXeHJl_KPbWm_aEFLqm1nIZnj4tpBB1jrWCie62EH1plDd22mHts-fb27JaUgLcE4uLo9wjGGOwSiFHbQ67bgonzJp2JI6FpgqiPfYab4fs4TBetGUTSSlkRmUH5hdg1QA84oFyj4bxEGYcupBuwWVuaMMxgni7BPncSgPRWCnFYsISMOWNrFNlzk3j7Lc5hoHdDdum6Clc8vId7Xsex6fb-nl-qLEqYQJNTr7uDTSaGQ9Tg'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1099

{
  "id" : "be08b876-cdac-4f2a-b90f-5d0419417405",
  "networkId" : "a6b84195-a187-47d6-b816-6f4fd428bdab",
  "zitiId" : null,
  "name" : "Updated Test AuthPolicy",
  "primary" : {
    "cert" : {
      "allowed" : false,
      "allowExpiredCerts" : true
    },
    "extJwt" : {
      "allowed" : false,
      "allowedSigners" : [ "bf39cffa-df50-4d6c-a9d3-da7de505d380", "942522fd-a71d-469a-b8b0-faf2d29513b4" ]
    },
    "updb" : {
      "allowed" : true,
      "lockoutDurationMinutes" : 6,
      "maxAttempts" : 4,
      "minPasswordLength" : 9,
      "requireMixedCase" : false,
      "requireNumberChar" : false,
      "requireSpecialChar" : false
    }
  },
  "secondary" : {
    "requireExtJwtSigner" : "a843b288-d9a2-4c53-be66-2857b6e1d6e4",
    "requireTotp" : true
  },
  "createdBy" : "a857a46b-d0e4-497b-a216-a9b5baebad22",
  "createdAt" : "2024-04-09T16:15:00.271534Z",
  "updatedAt" : "2024-04-09T16:15:07.276284Z",
  "appliedAt" : "2024-04-09T16:15:07.276284Z",
  "deletedAt" : "2024-04-09T16:15:07.274436Z",
  "deletedBy" : "4287e349-3254-44d7-8b79-215307ae0a51",
  "deleted" : true
}

External JWT Signer

Find External Jwt Signers

GET /v2/external-jwt-signers

Authorization

This endpoint requires read action on the external-jwt-signer resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/external-jwt-signers?id=818420b4-906a-44a2-99b6-032f304d88ba' -i -X GET \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJqSmVfUWdKeV9UZFhuWkV1M1l6V0x3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjE4MzI0MzUxLTY3OTQtNDliZC1hMjljLTM4MTg0MzQ1NTMyNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM1MSwiZXhwIjoxNzEyNjgyOTUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJkODBiZDE3LTBhZTEtNDExMi1iNDEzLTcyODY2MzYxZWY2Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LEClrzhTmDmRdOStrND4IvK98mU2A7Z0DFeBeNOmEKrLM2tCfXyLvTqxseIvHSPH9EdtNS7r83F224kJvuag28pRnWEFa92p-3-zwOEaj46zt77nUSxnJuYxnZj6CiBYpFwLtxtLfbQTvsGhlG9nr7db3rCYWm4V2w5X-eGPRLh7-fRqGHTFx_LXEWjDZR62SyLdygUBW6ytGf5cYJrc5RcRyjN6nzDywGB4xwYs6QQyC4DeJjnw4HeQClSX_oggv3kZVp5M19GRZ0-cXzSEsSzbhDUeMy27Q0Ov--8IMf4_Z19F_uHfW5i5u9cUT6C1fj3jpZrY37tuibycbmqs0A'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 730

[ {
  "id" : "818420b4-906a-44a2-99b6-032f304d88ba",
  "networkId" : "653663f5-0ab4-414c-8842-f185afbb3135",
  "zitiId" : "ziti.id.6to4eeuq",
  "name" : "Updated Test ExternalJwtSigner",
  "enabled" : false,
  "externalAuthUrl" : "http://externalAuthUrl.com",
  "issuer" : "issuer",
  "audience" : "audience",
  "jwksEndpoint" : "https://updated.jwksEndpoint.com",
  "claimsProperty" : "mySpecialClaim",
  "useExternalId" : true,
  "certPem" : null,
  "kid" : null,
  "createdBy" : "8c4d0bee-f2fb-46e7-9a8d-4118d5479dc4",
  "createdAt" : "2024-04-09T16:15:44.927056Z",
  "updatedAt" : "2024-04-09T16:15:51.379975Z",
  "appliedAt" : "2024-04-09T16:15:51.379975Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
} ]

Get External Jwt Signer

GET /v2/external-jwt-signers/{id}

Authorization

This endpoint requires read action on the external-jwt-signer resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/external-jwt-signers/818420b4-906a-44a2-99b6-032f304d88ba?meta=ziti,diffZiti' -i -X GET \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJycTlxTUpETnhqd3VzU0lKX3d0TEdnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhlMTIxMzg0LTdhZDQtNDNiOS04NjI4LTI2ZTY5MzYxN2U0ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM1MSwiZXhwIjoxNzEyNjgyOTUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVmNjdlNDM5LWQ3NzctNGJiMi04MzVhLTc2MDRiZjI5N2EyMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.sn90aSXvmEg5fAZdJLEZqLHI1Dsep4B5Q_OkSzdkfTaiCDoBWEUKLvyCwW_1feWERSzu9e-tl8JjagWEKJfHEom9U9MSjwfMq838pQuILThFRp7ool1-R-zdDVZ0SicNkRSpCYSBiAfA84qvDRycARQnTgs0ryWXdQPBFOra85RtagJwIYg-86Uq2qdkQLF41bI_4tMPbQNgYSGADnxxaMXTQE1Ab3ffLH3jW2RmWb1jCZCoujlzUogaIgm6eRxvvbChh3K7Rhd-YoM1xSd_1cBc3yi9FVk_gNEsXh4R4TSx7ohaLR3cF_Pa1_N5ytEXRdGlnqlEaaMO4YNSbGakZg'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1133

{
  "id" : "818420b4-906a-44a2-99b6-032f304d88ba",
  "networkId" : "653663f5-0ab4-414c-8842-f185afbb3135",
  "zitiId" : "ziti.id.6to4eeuq",
  "name" : "Test ExternalJwtSigner",
  "enabled" : true,
  "externalAuthUrl" : "http://externalAuthUrl.com",
  "issuer" : "issuer",
  "audience" : "audience",
  "jwksEndpoint" : "https://jwksEndpoint.com",
  "claimsProperty" : "mySpecialClaim",
  "useExternalId" : false,
  "certPem" : null,
  "kid" : null,
  "createdBy" : "8c4d0bee-f2fb-46e7-9a8d-4118d5479dc4",
  "createdAt" : "2024-04-09T16:15:44.927056Z",
  "updatedAt" : "2024-04-09T16:15:44.948092Z",
  "appliedAt" : "2024-04-09T16:15:44.948092Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false,
  "_meta" : {
    "diffZiti" : {
      "differencesDetected" : true,
      "description" : "Ziti missing resource with zitiId='ziti.id.6to4eeuq'",
      "comparedAt" : "2024-04-09T16:15:51.139189319Z"
    }
  },
  "meta" : {
    "diffZiti" : {
      "differencesDetected" : true,
      "description" : "Ziti missing resource with zitiId='ziti.id.6to4eeuq'",
      "comparedAt" : "2024-04-09T16:15:51.139189319Z"
    }
  }
}

Create External Jwt Signer

POST /v2/external-jwt-signers

Authorization

This endpoint requires create action on the external-jwt-signer resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkId

String

true

name

String

true

enabled

Boolean

true

externalAuthUrl

String

true

issuer

String

true

audience

String

true

jwksEndpoint

String

true

claimsProperty

String

true

useExternalId

Boolean

true

certPem

String

true

kid

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/external-jwt-signers' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4WjA2T0Q5YU1uaFZ0QjRLNkJmUWdRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhjNGQwYmVlLWYyZmItNDZlNy05YThkLTQxMThkNTQ3OWRjNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRhNWFlM2UwLWZmYmQtNDliOC1iMzU2LWQ3NjNiZTg4M2QyZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ZXRod8wm1ruDfbigj-v_MYXkMzkljDV22nGEoFa3MPvUEpgUtFYn8utKb-45ZZgAr16KFcvHQyBMmIo1yKf6Uzjq1GuoLIqWWSZuCHZjZ4NyPmdVh8ZCF7wO6yZUVBjL7TmKvO7y5Iif2vQC3lL4s40ljQiuWVJzoc4ioaCdGcgtk4hsPBhITg_6b8dp273tB7AbOgrh7iPuQX7Szpq0XRyg04FH3lVMqdYiG_eLkw-TB5OWF77eN88cfuZgXwyRfc_TYvyhABP6PwmY55FaPJCNRB-i7Xhgn_Fr_11Bud4gLYY3BLDKNJdg0sxY6Er8UM9IG-5Jip7N7cnNpB3-Sw' \
    -d '{"networkId":"653663f5-0ab4-414c-8842-f185afbb3135","name":"Test ExternalJwtSigner","enabled":true,"externalAuthUrl":"http://externalAuthUrl.com","issuer":"issuer","audience":"audience","jwksEndpoint":"https://jwksEndpoint.com","claimsProperty":"mySpecialClaim","useExternalId":false,"certPem":null,"kid":null}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 710

{
  "id" : "818420b4-906a-44a2-99b6-032f304d88ba",
  "networkId" : "653663f5-0ab4-414c-8842-f185afbb3135",
  "zitiId" : "ziti.id.6to4eeuq",
  "name" : "Test ExternalJwtSigner",
  "enabled" : true,
  "externalAuthUrl" : "http://externalAuthUrl.com",
  "issuer" : "issuer",
  "audience" : "audience",
  "jwksEndpoint" : "https://jwksEndpoint.com",
  "claimsProperty" : "mySpecialClaim",
  "useExternalId" : false,
  "certPem" : null,
  "kid" : null,
  "createdBy" : "8c4d0bee-f2fb-46e7-9a8d-4118d5479dc4",
  "createdAt" : "2024-04-09T16:15:44.927056Z",
  "updatedAt" : "2024-04-09T16:15:44.948092Z",
  "appliedAt" : "2024-04-09T16:15:44.948092Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
}

Update External Jwt Signer

PATCH /v2/external-jwt-signers/{id}

Authorization

This endpoint requires update action on the external-jwt-signer resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

enabled

Boolean

true

externalAuthUrl

Object

true

issuer

String

true

audience

String

true

jwksEndpoint

String

true

claimsProperty

Object

true

useExternalId

Boolean

true

certPem

String

true

kid

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/external-jwt-signers/818420b4-906a-44a2-99b6-032f304d88ba' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJwYTVLRHFhSC11YkdQU3VncWRKVGJ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImE0MGNiMTk1LWM0MmUtNDAxYy04MGMxLTE0ODk4OTM0MDczYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM1MSwiZXhwIjoxNzEyNjgyOTUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY3NGEzODgyLWYyYzItNDViMi1iMzIyLWMwN2U1YmZjOTdkMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.oM5zoCshmneFrdxKeBgdhdTU74BZTxLLGFwJvY75mRVqUYo0umNG2oLpQ_1ZQWRXWw7YBeCfMD4OX2av50vExDiqA7MHnlJ_uYdiKJoIT5sesx1Zh-RigC6JUboEbqoiJ9FUeY9i82c76K4OBPu0LrE1ZPKol17mo7GcOL5utipmzwZZvSjuOVoELnInOr2ArJt7PzpvjnB7Z_PnHORq042ms7KGTg7y1Uj_ffM-ImpwbuErB84eA-a5DX5aTac626ri5n-FpGVOLKLc4rqBSdXfWm7vSwzx3GVWtT9v6M2N-vup117DDz0kjkEX6L2Vy16Wsk0sJn1gCGvk8dw7fA' \
    -d '{"name":"Updated Test ExternalJwtSigner","enabled":false,"issuer":"issuer","audience":"audience","jwksEndpoint":"https://updated.jwksEndpoint.com","useExternalId":true,"certPem":null,"kid":null}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 726

{
  "id" : "818420b4-906a-44a2-99b6-032f304d88ba",
  "networkId" : "653663f5-0ab4-414c-8842-f185afbb3135",
  "zitiId" : "ziti.id.6to4eeuq",
  "name" : "Updated Test ExternalJwtSigner",
  "enabled" : false,
  "externalAuthUrl" : "http://externalAuthUrl.com",
  "issuer" : "issuer",
  "audience" : "audience",
  "jwksEndpoint" : "https://updated.jwksEndpoint.com",
  "claimsProperty" : "mySpecialClaim",
  "useExternalId" : true,
  "certPem" : null,
  "kid" : null,
  "createdBy" : "8c4d0bee-f2fb-46e7-9a8d-4118d5479dc4",
  "createdAt" : "2024-04-09T16:15:44.927056Z",
  "updatedAt" : "2024-04-09T16:15:51.379975Z",
  "appliedAt" : "2024-04-09T16:15:51.379975Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "deleted" : false
}

Delete External Jwt Signer

DELETE /v2/external-jwt-signers/{id}

Authorization

This endpoint requires delete action on the external-jwt-signer resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/external-jwt-signers/818420b4-906a-44a2-99b6-032f304d88ba' -i -X DELETE \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1SVhiVlFrT1ZsVVVHMmZSSlNJR1NRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImFhMzUzZGNhLTFhMWMtNDM4Ni04OTFlLThmMDFiNWMwMzg0MiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM1MSwiZXhwIjoxNzEyNjgyOTUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ0MDE3NzZmLWNkYzUtNDhmNi05M2IwLTU0MzAyYjliZDJhNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.TqhhZDpD1ysg6hkwQUMKuoHzIuFhCj9kmPa6QKyWoVQge6KGyIEqCQN_DQHCAI0FMC86fY4JAFecLewwoeEYGI4NNVA11F2jJiyjjDnUmiAXE7HY9Oxe6MEH3DcnFz6Gox-vjC4QT2ua_1GZD5FqKgmUGMQMj8RVUE8oDnR2HSgSAryG6Qx6YbCpsI3I1AYnCyTuoalkcR8-KVf6PxEz0zZhDRjC4Q2pPBHE5C8fj-EylYvpzE-kobqaRLmDwN7NDWlrZeOiWH0mKk7ujppUVxxvzeJBkcs9sSucK-5enb6__-1E1B6uwn8dBIufSFgWoN9xMlydlLWShw51kYT-FA'

Example response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 770

{
  "id" : "818420b4-906a-44a2-99b6-032f304d88ba",
  "networkId" : "653663f5-0ab4-414c-8842-f185afbb3135",
  "zitiId" : null,
  "name" : "Updated Test ExternalJwtSigner",
  "enabled" : false,
  "externalAuthUrl" : "http://externalAuthUrl.com",
  "issuer" : "issuer",
  "audience" : "audience",
  "jwksEndpoint" : "https://updated.jwksEndpoint.com",
  "claimsProperty" : "mySpecialClaim",
  "useExternalId" : true,
  "certPem" : null,
  "kid" : null,
  "createdBy" : "8c4d0bee-f2fb-46e7-9a8d-4118d5479dc4",
  "createdAt" : "2024-04-09T16:15:44.927056Z",
  "updatedAt" : "2024-04-09T16:15:51.707271Z",
  "appliedAt" : "2024-04-09T16:15:51.707271Z",
  "deletedAt" : "2024-04-09T16:15:51.706061Z",
  "deletedBy" : "aa353dca-1a1c-4386-891e-8f01b5c03842",
  "deleted" : true
}

Cloud Providers

List Providers

GET /v2/cloud-providers

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

type

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

name

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/cloud-providers' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2455

{
  "_embedded" : {
    "cloudProviderList" : [ {
      "type" : "AWS",
      "name" : "AWS Name",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AWS"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=AWS"
        }
      }
    }, {
      "type" : "ALICLOUD",
      "name" : "AliCloud Name",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/ALICLOUD"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=ALICLOUD"
        }
      }
    }, {
      "type" : "AZURE",
      "name" : "Azure Name",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AZURE"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=AZURE"
        }
      }
    }, {
      "type" : "GCP",
      "name" : "GCP Name",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/GCP"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=GCP"
        }
      }
    }, {
      "type" : "OCI",
      "name" : "OCI Name",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=OCI"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
    }
  }
}

Get Provider

GET /v2/cloud-providers/{cloudProvider}

Authorization

Authorization not required for this request.

Path parameters

Parameter Type Optional Description

cloudProvider

String

false

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCP' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 392

{
  "type" : "OCI",
  "name" : "OCI Name",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
    },
    "providers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
    },
    "regions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions?providers=OCI"
    }
  }
}

Regions

Find Regions

GET /v2/regions

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

latitude

Decimal

true

longitude

Decimal

true

providers

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

locationCode

String

true

name

String

true

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

address

String

true

city

String

true

stateCode

String

true

stateName

String

true

countryName

String

true

countryCode

String

true

latitude

Decimal

true

longitude

Decimal

true

distance

Decimal

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/regions' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 7085

{
  "_embedded" : {
    "regionList" : [ {
      "locationCode" : "gcp-us-east-1",
      "name" : "us-east-1",
      "provider" : "GCP",
      "latitude" : 50.0,
      "longitude" : 55.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/GCP/gcp-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=GCP"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/GCP"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "gcp-us-east-2",
      "name" : "us-east-2",
      "provider" : "GCP",
      "latitude" : 55.0,
      "longitude" : 50.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/GCP/gcp-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=GCP"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/GCP"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "aws-us-east-1",
      "name" : "us-east-1",
      "provider" : "AWS",
      "latitude" : 50.0,
      "longitude" : 50.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/AWS/aws-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=AWS"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AWS"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "aws-us-east-2",
      "name" : "us-east-2",
      "provider" : "AWS",
      "latitude" : 45.0,
      "longitude" : 45.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/AWS/aws-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=AWS"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AWS"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "azure-us-east-1",
      "name" : "us-east-1",
      "provider" : "AZURE",
      "latitude" : 51.0,
      "longitude" : 51.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/AZURE/azure-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=AZURE"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AZURE"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "azure-us-east-2",
      "name" : "us-east-2",
      "provider" : "AZURE",
      "latitude" : 48.0,
      "longitude" : 48.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/AZURE/azure-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=AZURE"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AZURE"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "ali-us-east-1",
      "name" : "us-east-1",
      "provider" : "ALICLOUD",
      "latitude" : 52.0,
      "longitude" : 52.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/ALICLOUD/ali-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=ALICLOUD"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/ALICLOUD"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "ali-us-east-2",
      "name" : "us-east-2",
      "provider" : "ALICLOUD",
      "latitude" : 53.0,
      "longitude" : 53.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/ALICLOUD/ali-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=ALICLOUD"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/ALICLOUD"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "oci-us-east-1",
      "name" : "us-east-1",
      "provider" : "OCI",
      "latitude" : 25.0,
      "longitude" : 25.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/OCI/oci-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=OCI"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "oci-us-east-2",
      "name" : "us-east-2",
      "provider" : "OCI",
      "latitude" : 22.0,
      "longitude" : 22.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/OCI/oci-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=OCI"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions"
    },
    "providers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
    }
  }
}

Find Regions

GET /v2/regions

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

latitude

Decimal

true

longitude

Decimal

true

providers

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

locationCode

String

true

name

String

true

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

address

String

true

city

String

true

stateCode

String

true

stateName

String

true

countryName

String

true

countryCode

String

true

latitude

Decimal

true

longitude

Decimal

true

distance

Decimal

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/regions?providers=OCP' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
X-NF-deprecated-property: providers; removal 3/1/2022; see use provider
Content-Type: application/hal+json
Content-Length: 1621

{
  "_embedded" : {
    "regionList" : [ {
      "locationCode" : "oci-us-east-1",
      "name" : "us-east-1",
      "provider" : "OCI",
      "latitude" : 25.0,
      "longitude" : 25.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/OCI/oci-us-east-1"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=OCI"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    }, {
      "locationCode" : "oci-us-east-2",
      "name" : "us-east-2",
      "provider" : "OCI",
      "latitude" : 22.0,
      "longitude" : 22.0,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions/OCI/oci-us-east-2"
        },
        "regions" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=OCI"
        },
        "provider" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
        },
        "providers" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions"
    },
    "providers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
    }
  }
}

Get Region

GET /v2/regions/{provider}/{locationCode}

Authorization

Authorization not required for this request.

Path parameters

Parameter Type Optional Description

provider

String

false

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

locationCode

String

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

locationCode

String

true

name

String

true

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

address

String

true

city

String

true

stateCode

String

true

stateName

String

true

countryName

String

true

countryCode

String

true

latitude

Decimal

true

longitude

Decimal

true

distance

Decimal

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/regions/OCP/oci-us-east-1' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 593

{
  "locationCode" : "oci-us-east-1",
  "name" : "us-east-1",
  "provider" : "OCI",
  "latitude" : 25.0,
  "longitude" : 25.0,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions/OCI/oci-us-east-1"
    },
    "regions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions?provider=OCI"
    },
    "provider" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/OCI"
    },
    "providers" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers"
    }
  }
}

Hosts

Find Hosts

GET /v2/hosts

Authorization

This endpoint requires read action on the host resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

host.size

Object

true

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

ownerIdentityId

String

true

provider

String

true

Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER].

region

String

true

ipAddress

String

true

port

Integer

true

providerInstanceId

String

true

size

String

true

userData

String

true

username

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/hosts' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJYRVFEQUdDZ1Q0RnAwTmRCUjY4aGRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImRmMjViYWE3LTA4ZjMtNDEyNS1hY2U3LWJhNDdmZjNmZDQ4OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzNCwiZXhwIjoxNzEyNjgyNzM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM2MTE3NjMxLTk0MTItNGI1YS04OGE3LTMwZTczZGZiNmE0OVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.izJ2GgtQLMWaGU6Nah2iccMP-BfFRGOyBSp4F3jDonFaIfP04eYt0pmm6fTe_tjrIbAsTVZVSvpCs7WFXM0SJy9AcNISoqiSRX6mv_f848ZCBe-7_fY3pht1pSMAJ4lpw5Ftak8TizmAee8S9u00gYutUDuqYVAw2DP7vbXLcAP0JGWfWpKqYCzckKhcejx3nMplmVCmX9NjbSD65ezUHfwjOpJwjLjEls0cuUCpIw6Qr03X1PdINpAKeWXdD2LunUNuAYR8xEwGzu5e543ZQqvV7vp7lzSrHr_BBU8fcsWmdUiYHUNbkIYuzIZmZCIEz38SOpFenkURdCLYUlsECw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2147

{
  "_embedded" : {
    "hostList" : [ {
      "id" : "b4a219f6-e93f-4013-97c2-edc8232ffe4b",
      "networkId" : "c90722d3-3516-4790-b4a9-929d4d5b9343",
      "ownerIdentityId" : "d2602676-b6b9-4713-9f87-6196e3b5f364",
      "provider" : "OCI",
      "region" : "us-east-1",
      "ipAddress" : "2.2.2.2",
      "port" : 8080,
      "providerInstanceId" : "70f6d1c6-8010-44de-adf0-a5ddd360dfa2",
      "size" : "medium",
      "userData" : null,
      "createdBy" : null,
      "createdAt" : "2024-04-09T16:12:14.907498Z",
      "updatedAt" : "2024-04-09T16:12:14.907498Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c90722d3-3516-4790-b4a9-929d4d5b9343",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b4a219f6-e93f-4013-97c2-edc8232ffe4b"
        }
      }
    }, {
      "id" : "bf2530b9-eef4-4fc4-a263-09670e77ab1e",
      "networkId" : "c90722d3-3516-4790-b4a9-929d4d5b9343",
      "ownerIdentityId" : "d2602676-b6b9-4713-9f87-6196e3b5f364",
      "provider" : "AWS",
      "region" : "us-east-1",
      "ipAddress" : "1.2.3.4",
      "port" : 443,
      "providerInstanceId" : "935e2b08-10bf-4c25-b651-893440e6f8d3",
      "size" : "small",
      "userData" : null,
      "createdBy" : null,
      "createdAt" : "2024-04-09T16:12:14.889513Z",
      "updatedAt" : "2024-04-09T16:12:14.889513Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/c90722d3-3516-4790-b4a9-929d4d5b9343",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bf2530b9-eef4-4fc4-a263-09670e77ab1e"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Host

GET /v2/hosts/{id}

Authorization

This endpoint requires read action on the host resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/hosts/abce4746-b7bb-4790-ba82-58fa6b5d169a' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJfQU9reDI4bWtIVmlKb0IxbkQ2RTFnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjNlMWJjNTEwLTZiYWUtNDE4NS05YzUyLTk5NTc1ZTFkMzFiMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzNCwiZXhwIjoxNzEyNjgyNzM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjlhZjNhYTVkLWEwNjktNGE1Ni04NTUyLTZlZTAwZjZhNTNmY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.oXbxgjMTdUE4JEM2h4t-7Fa-kVE_6-eOKvgEKJFe8mRZFEwi5qaqXfFH3a85TWWvK_2Wxcro8NH-mGvulU9RK-sMe0I_0siz5aBHtBHLLdOqi7jNzvKl2BLCGa-d6LF-r6p8wws1ofPnew6zc0qeztnemwgFSb_dfdvGcq4_1Y8MrHOBv_rIJ9CowfzL5_4YkhK85XozfQtuLDRpVLYXA6Xk5bbXRte_bx8-rxwcS6rifv_K5jAKBlvYCCCRhjENtW4ClNvLFjvhFs5NhoSKVGDaSy8UyVNxVMCS35HP9gBZQsrhW_6wv5Nyk-9M4219E6mjH0YIqzVeBsx7vTb64A'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1065

{
  "id" : "abce4746-b7bb-4790-ba82-58fa6b5d169a",
  "networkId" : "2d88497c-d842-4eae-b56f-9cd8a0989ea6",
  "ownerIdentityId" : "6ff28e6d-7898-4c1f-9624-e931913847ce",
  "provider" : "AWS",
  "region" : "us-east-1",
  "ipAddress" : "1.2.3.4",
  "port" : 443,
  "providerInstanceId" : "96c92c8f-fc40-48c2-9121-22765ec7f7d5",
  "size" : "small",
  "userData" : null,
  "createdBy" : null,
  "createdAt" : "2024-04-09T16:12:14.671192Z",
  "updatedAt" : "2024-04-09T16:12:14.671192Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/hosts/abce4746-b7bb-4790-ba82-58fa6b5d169a"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d88497c-d842-4eae-b56f-9cd8a0989ea6",
      "profile" : "parent"
    },
    "provider" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/cloud-providers/AWS"
    },
    "region" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/regions/AWS/us-east-1"
    }
  }
}

Host Sizes

Find Host Sizes V 2

GET /v2/host-sizes

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

providers

Object

true

Deprecated..

type

String

true

Request fields

No request body.

Response fields

Path Type Optional Description

[].name

String

true

[].hostType

String

true

Must be one of [NC, ER].

[].providers

Array[String]

true

[].description

Array[String]

true

[].default

Boolean

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/host-sizes' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 536

[ {
  "name" : "small",
  "hostType" : "ER",
  "providers" : [ "GCP", "AWS", "AZURE", "ALICLOUD", "OCI" ],
  "description" : [ ],
  "default" : true
}, {
  "name" : "medium",
  "hostType" : "ER",
  "providers" : [ "GCP", "AWS", "AZURE", "ALICLOUD", "OCI" ],
  "description" : [ ],
  "default" : false
}, {
  "name" : "small",
  "hostType" : "NC",
  "providers" : [ "AWS" ],
  "description" : [ ],
  "default" : true
}, {
  "name" : "medium",
  "hostType" : "NC",
  "providers" : [ "AWS" ],
  "description" : [ ],
  "default" : false
} ]

Find Host Sizes V 2

GET /v2/host-sizes

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

providers

Object

true

Deprecated..

type

String

true

Request fields

No request body.

Response fields

Path Type Optional Description

[].name

String

true

[].hostType

String

true

Must be one of [NC, ER].

[].providers

Array[String]

true

[].description

Array[String]

true

[].default

Boolean

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/host-sizes?providers=ALICLOUD' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
X-NF-deprecated-property: providers; removal 3/1/2022; see use provider
Content-Type: application/hal+json
Content-Length: 244

[ {
  "name" : "small",
  "hostType" : "ER",
  "providers" : [ "ALICLOUD" ],
  "description" : [ ],
  "default" : true
}, {
  "name" : "medium",
  "hostType" : "ER",
  "providers" : [ "ALICLOUD" ],
  "description" : [ ],
  "default" : false
} ]

Find Host Sizes V 2

GET /v2/host-sizes

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

providers

Object

true

Deprecated..

type

String

true

Request fields

No request body.

Response fields

Path Type Optional Description

[].name

String

true

[].hostType

String

true

Must be one of [NC, ER].

[].providers

Array[String]

true

[].description

Array[String]

true

[].default

Boolean

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/host-sizes?providers=ALICLOUD&type=ER' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
X-NF-deprecated-property: providers; removal 3/1/2022; see use provider
Content-Type: application/hal+json
Content-Length: 244

[ {
  "name" : "small",
  "hostType" : "ER",
  "providers" : [ "ALICLOUD" ],
  "description" : [ ],
  "default" : true
}, {
  "name" : "medium",
  "hostType" : "ER",
  "providers" : [ "ALICLOUD" ],
  "description" : [ ],
  "default" : false
} ]

Find Host Sizes V 2

GET /v2/host-sizes

Authorization

Authorization not required for this request.

Path parameters

No parameters.

Query parameters

Parameter Type Optional Description

provider

Object

true

providers

Object

true

Deprecated..

type

String

true

Request fields

No request body.

Response fields

Path Type Optional Description

[].name

String

true

[].hostType

String

true

Must be one of [NC, ER].

[].providers

Array[String]

true

[].description

Array[String]

true

[].default

Boolean

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/host-sizes?type=NC' -i -X GET \
    -H 'Accept: application/hal+json'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 234

[ {
  "name" : "small",
  "hostType" : "NC",
  "providers" : [ "AWS" ],
  "description" : [ ],
  "default" : true
}, {
  "name" : "medium",
  "hostType" : "NC",
  "providers" : [ "AWS" ],
  "description" : [ ],
  "default" : false
} ]

Executions

Find Executions

GET /v2/executions

Authorization

This endpoint requires read action on the execution resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Parameter Type Optional Description

state

Object

true

Deprecated..

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkId

String

true

processId

String

true

name

String

true

description

String

true

resourceType

String

true

resourceId

String

true

startedAt

String

true

finishedAt

String

true

traceId

String

true

status

String

true

Must be one of [RUNNING, FAILED, SUCCESS, CANCELED].

initiatingIdentityId

String

true

createdAt

String

true

updatedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/executions?networkId=b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJRWUI5QWUtSmxwdXZGRjFHeUFWM1JRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjY1MmY2YTU5LTViMGUtNGY2Yy05ZjE0LTMxN2ExYjZhZTJmYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEyOCwiZXhwIjoxNzEyNjgyNzI4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjMwN2E0ZGFlLTIzMTAtNDZjMi04NGYyLTVkNGNhNzVkOTFjYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEyOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.M6pYjzViM2BdA9Nl_Aj3GP1q-_8oR61dmqUC_5mIuIatFv3VIAnym3dti2mjL7jxgo4IobdyiYGbWwl1s4hLiwIOL-O_3uyVOMCPsfttVvzTpVMJXHxJ7hHp2QbvrvkCTPG9gMz4nwK2P2poB_ni-TaDV_dR9zY1HwZnCgfllEd1MF8NDHLpLeGAqui0AZ9lKT0EOYnfn5l3gFC-RkI2O9mgxe9gcLjdB4VS2UxBcPZYs4_haZUqJtxioJey4xyS5jfR2kDfG0E5TXCtk3lI7Hn-ULcbpiW3uFKRWM5wW0RZ-TBkfog10cUGo5ojsZWf2r_yVVSdUj3tJSM-IhFASQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3557

{
  "_embedded" : {
    "executionList" : [ {
      "id" : "2ba0dc8d-7e9b-4c02-a7a0-060932793405",
      "networkId" : "b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
      "processId" : "2706322c-421f-4275-88d1-d5b7e3dce449",
      "name" : "CreateEndpointProcess",
      "description" : "Fake Process",
      "resourceType" : "component",
      "resourceId" : "e06e427a-9541-4104-9140-5c011e85c620",
      "startedAt" : "2024-04-09T16:12:08.055674Z",
      "finishedAt" : null,
      "traceId" : "trace2",
      "status" : "RUNNING",
      "initiatingIdentityId" : "56224907-2015-44e2-8480-2419178501f1",
      "createdAt" : "2024-04-09T16:12:08.068397Z",
      "updatedAt" : "2024-04-09T16:12:08.068397Z",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions/2ba0dc8d-7e9b-4c02-a7a0-060932793405",
          "title" : "CreateEndpointProcess"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "b02b59ff-6486-48b1-b623-4a6c1012059f",
      "networkId" : "b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
      "processId" : "d49a90ac-021a-43e8-a4d1-23a4837ec200",
      "name" : "CreateEndpointProcess",
      "description" : "Fake Process",
      "resourceType" : "component",
      "resourceId" : "7a0125e9-c1ab-4e68-b06b-b21ea968d990",
      "startedAt" : "2024-04-09T16:12:07.986781Z",
      "finishedAt" : "2024-04-09T16:12:07.986782Z",
      "traceId" : "trace1",
      "status" : "SUCCESS",
      "initiatingIdentityId" : "5c377d31-af91-489b-869f-c641a768c73a",
      "createdAt" : "2024-04-09T16:12:08.000548Z",
      "updatedAt" : "2024-04-09T16:12:08.000548Z",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions/b02b59ff-6486-48b1-b623-4a6c1012059f",
          "title" : "CreateEndpointProcess"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "bbffee42-11fc-4a02-a714-54a062edb7c5",
      "networkId" : "b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
      "processId" : "0a5ed54c-d191-4338-85a8-176b3c0d20b3",
      "name" : "CreateEndpointProcess",
      "description" : "Fake Process",
      "resourceType" : "component",
      "resourceId" : "dbc9b5f3-4327-44de-8a37-25b10e59ccfc",
      "startedAt" : "2024-04-09T16:12:08.070138Z",
      "finishedAt" : "2024-04-09T16:12:08.070138Z",
      "traceId" : "trace3",
      "status" : "FAILED",
      "initiatingIdentityId" : "e41f9c7f-1bee-432d-a678-74d8d568fd9e",
      "createdAt" : "2024-04-09T16:12:08.092970Z",
      "updatedAt" : "2024-04-09T16:12:08.092970Z",
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/executions/bbffee42-11fc-4a02-a714-54a062edb7c5",
          "title" : "CreateEndpointProcess"
        },
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=b764e1c6-1e9d-4a54-9d8d-25a8b78f06c7"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 3,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Execution

GET /v2/executions/{id}

Authorization

This endpoint requires read action on the execution resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/executions/0179009f-becc-417e-b261-f56788eee61e' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWb09fVlBqWU9FYlUtM1dTTjZYOTdnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImIzZDI3Mjc0LWFiOGYtNGFmNC05MTk3LTdlNjkyMWM1ZTAyZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTEzMCwiZXhwIjoxNzEyNjgyNzMwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM2ODdlNWM5LWU5OGYtNDE1Ni1iMzE2LWMzMDJmMDQ3MWFmZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTEzMH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.bkwCQvt1DZWeeG1B24fa309836vAJBxII3ogQaPMOGo8xrN8yBwRql7tSCMUQ4qbJK-6r8j9-F2w4Tp6v-CE8KgK9s6Q-UjwBJ8D5uNxRKO-t1aosD80JwmCdHDWyW0DUTVtzb9_qq6TpyZFNQ4QYiHrrtVOSGc9el2vExhOcLwF6M-Mz_i_xDNMEy0-z_5k8Ev1lJ_EPfroutXD97dSjVVUWhYOXENuwzrsM-GT3lysn4jTWac_ejyzBGQCznHYfBqObEACMgrYn2T-hwY6cypsUfo5YfSb2VOUtgSG6gBPksYP7U6DxuuJPccqPKSzDKwL8VtWVrOUQApCqcSB-Q'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 987

{
  "id" : "0179009f-becc-417e-b261-f56788eee61e",
  "networkId" : "a3098cb7-e62d-4cd8-9703-1f7cf65281d1",
  "processId" : "bdb3456f-67fc-460d-8b35-86a020fea94d",
  "name" : "CreateEndpointProcess",
  "description" : "Fake Process",
  "resourceType" : "component",
  "resourceId" : "2a5c5448-0d66-4f57-8305-0e1d64951028",
  "startedAt" : "2024-04-09T16:12:10.717185Z",
  "finishedAt" : "2024-04-09T16:12:10.717185Z",
  "traceId" : "trace1",
  "status" : "SUCCESS",
  "initiatingIdentityId" : "13f2fb28-4743-4b6d-ab7c-d1f76584f557",
  "createdAt" : "2024-04-09T16:12:10.717671Z",
  "updatedAt" : "2024-04-09T16:12:10.717671Z",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/0179009f-becc-417e-b261-f56788eee61e",
      "title" : "CreateEndpointProcess"
    },
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/a3098cb7-e62d-4cd8-9703-1f7cf65281d1",
      "profile" : "parent"
    }
  }
}

Network Versions

Find Network Versions

GET /v2/network-versions

Authorization

This endpoint requires read action on the network-version resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

Path Type Optional Description

id

String

true

networkVersion

Object

true

zitiVersion

Object

true

minimumNetworkVersionForUpgrade

Object

true

minimumEdgeRouterVersionForUpgrade

Object

true

active

Boolean

true

default

Boolean

true

jsonNode

Object

true

createdAt

String

true

updatedAt

String

true

platformFeatures

Array[Object]

true

platformFeatures[].displayName

String

true

platformFeatures[].deprecatedAt

Object

true

platformFeatures[].removedAt

Object

true

platformFeatures[].introducedAt

Object

true

zitiFeatures

Array[Object]

true

zitiFeatures[].displayName

String

true

zitiFeatures[].deprecatedAt

Object

true

zitiFeatures[].removedAt

Object

true

zitiFeatures[].introducedAt

Object

true

recommended

Boolean

true

Deprecated..

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-versions' -i -X GET \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJPVHV3dm53X1V6SlVCWGx4cm0tWGp3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjVhYTA3NDVjLWZmNWItNDFjMC1iYzUwLWY1OTVmMDFhOTI0NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE1NSwiZXhwIjoxNzEyNjgyNzU1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjE1NzEzZTJjLTUyOTktNDgzMC1iMjA4LTUxMTdkZGFhMzFhYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE1NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.cEmrZzB1vCoxFxv5oOGOWyuH-Wc89REifx5s3hwFHldF-OzhZy4ijDN3r5zC9h3QBMF_x1kVcridKTO8zKAz2RnGqZ6SUQv3JGhfZ6cZefKJXZysfVR-nadoBC_1frTLxt9wW-3hfoX-nhuwSJpnTjZfJp3ng-iQdJgWDkdDY9x6IwMqXvgBuXtU9V7sewbwx7TzCPbOxgR9wy281XcIuWNUj4HmXzlueQilGn3xRifGrwc3ixEBw1wg429QnGd6mVbmsA4rbCKkavhR4_eZqakB1EUL5m3h9X7Lo_mkEOgPCtvv8mVAVZ9yWuCzuOvKR6Yz9f7dKhouTLuFzpu3gA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 202582

{
  "_embedded" : {
    "network-versions" : [ {
      "id" : "002c1115-2216-4857-84cd-0e244d301fd7",
      "networkVersion" : "7.3.9",
      "zitiVersion" : "0.18.5",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.5",
          "value" : "0.18.5",
          "major" : 0,
          "minor" : 18,
          "patch" : 5,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.9",
          "value" : "7.3.9",
          "major" : 7,
          "minor" : 3,
          "patch" : 9,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.907076Z",
      "updatedAt" : "2024-04-09T16:12:34.907076Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/002c1115-2216-4857-84cd-0e244d301fd7"
        }
      }
    }, {
      "id" : "0ac8032f-5a35-4b04-a592-eb59a57ade87",
      "networkVersion" : "7.3.31",
      "zitiVersion" : "0.20.8",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.8",
          "value" : "0.20.8",
          "major" : 0,
          "minor" : 20,
          "patch" : 8,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.31",
          "value" : "7.3.31",
          "major" : 7,
          "minor" : 3,
          "patch" : 31,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.054649Z",
      "updatedAt" : "2024-04-09T16:12:35.054649Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/0ac8032f-5a35-4b04-a592-eb59a57ade87"
        }
      }
    }, {
      "id" : "1508c4f9-b99e-4c40-a13b-b7e476c7cc7e",
      "networkVersion" : "7.3.30",
      "zitiVersion" : "0.20.3",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.3",
          "value" : "0.20.3",
          "major" : 0,
          "minor" : 20,
          "patch" : 3,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.30",
          "value" : "7.3.30",
          "major" : 7,
          "minor" : 3,
          "patch" : 30,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.045976Z",
      "updatedAt" : "2024-04-09T16:12:35.045976Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/1508c4f9-b99e-4c40-a13b-b7e476c7cc7e"
        }
      }
    }, {
      "id" : "26ec6005-401b-480f-af82-1147c5a5b1ff",
      "networkVersion" : "8.0.69",
      "zitiVersion" : "0.25.13",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.25.13",
          "value" : "0.25.13",
          "major" : 0,
          "minor" : 25,
          "patch" : 13,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "8.0.69",
          "value" : "8.0.69",
          "major" : 8,
          "minor" : 0,
          "patch" : 69,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.922198Z",
      "updatedAt" : "2024-04-09T16:12:34.922198Z",
      "platformFeatures" : [ {
        "displayName" : "browzer-app",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.90"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/26ec6005-401b-480f-af82-1147c5a5b1ff"
        }
      }
    }, {
      "id" : "26f85028-a83f-49bb-9509-afd3644693c1",
      "networkVersion" : "7.3.4",
      "zitiVersion" : "0.17.5",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.17.5",
          "value" : "0.17.5",
          "major" : 0,
          "minor" : 17,
          "patch" : 5,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.4",
          "value" : "7.3.4",
          "major" : 7,
          "minor" : 3,
          "patch" : 4,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.867376Z",
      "updatedAt" : "2024-04-09T16:12:34.867376Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/26f85028-a83f-49bb-9509-afd3644693c1"
        }
      }
    }, {
      "id" : "28a1f7db-fa16-4a52-a5cc-d6f54dee9db7",
      "networkVersion" : "7.3.36",
      "zitiVersion" : "0.24.13",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : false,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.24.13",
          "value" : "0.24.13",
          "major" : 0,
          "minor" : 24,
          "patch" : 13,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : true,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.36",
          "value" : "7.3.36",
          "major" : 7,
          "minor" : 3,
          "patch" : 36,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.092172Z",
      "updatedAt" : "2024-04-09T16:12:35.092172Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/28a1f7db-fa16-4a52-a5cc-d6f54dee9db7"
        }
      }
    }, {
      "id" : "37780416-04d1-4501-9e45-b924ccfdf832",
      "networkVersion" : "7.3.28",
      "zitiVersion" : "0.20.1",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.1",
          "value" : "0.20.1",
          "major" : 0,
          "minor" : 20,
          "patch" : 1,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.28",
          "value" : "7.3.28",
          "major" : 7,
          "minor" : 3,
          "patch" : 28,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.026081Z",
      "updatedAt" : "2024-04-09T16:12:35.026081Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/37780416-04d1-4501-9e45-b924ccfdf832"
        }
      }
    }, {
      "id" : "3d900a84-915b-4fcd-bc83-28866eecf6a2",
      "networkVersion" : "7.3.20",
      "zitiVersion" : "0.19.6",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.6",
          "value" : "0.19.6",
          "major" : 0,
          "minor" : 19,
          "patch" : 6,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.20",
          "value" : "7.3.20",
          "major" : 7,
          "minor" : 3,
          "patch" : 20,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.951264Z",
      "updatedAt" : "2024-04-09T16:12:34.951264Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/3d900a84-915b-4fcd-bc83-28866eecf6a2"
        }
      }
    }, {
      "id" : "440e17e7-d627-4b50-b5b1-9f1f0ce78072",
      "networkVersion" : "7.3.5",
      "zitiVersion" : "0.18.0",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.0",
          "value" : "0.18.0",
          "major" : 0,
          "minor" : 18,
          "patch" : 0,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.5",
          "value" : "7.3.5",
          "major" : 7,
          "minor" : 3,
          "patch" : 5,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.874404Z",
      "updatedAt" : "2024-04-09T16:12:34.874404Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/440e17e7-d627-4b50-b5b1-9f1f0ce78072"
        }
      }
    }, {
      "id" : "446d2dfc-a2a1-42c1-bb4f-47bceab165b7",
      "networkVersion" : "7.3.62",
      "zitiVersion" : "0.25.14",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.25.14",
          "value" : "0.25.14",
          "major" : 0,
          "minor" : 25,
          "patch" : 14,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.62",
          "value" : "7.3.62",
          "major" : 7,
          "minor" : 3,
          "patch" : 62,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.095764Z",
      "updatedAt" : "2024-04-09T16:12:35.095764Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/446d2dfc-a2a1-42c1-bb4f-47bceab165b7"
        }
      }
    }, {
      "id" : "4772ad50-6441-41e9-90a7-67c026d95736",
      "networkVersion" : "7.3.26",
      "zitiVersion" : "0.19.12",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.12",
          "value" : "0.19.12",
          "major" : 0,
          "minor" : 19,
          "patch" : 12,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.26",
          "value" : "7.3.26",
          "major" : 7,
          "minor" : 3,
          "patch" : 26,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.007150Z",
      "updatedAt" : "2024-04-09T16:12:35.007150Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/4772ad50-6441-41e9-90a7-67c026d95736"
        }
      }
    }, {
      "id" : "4a5810c8-b3eb-49d4-96e1-bb7e9b27b156",
      "networkVersion" : "7.3.10",
      "zitiVersion" : "0.18.7",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.7",
          "value" : "0.18.7",
          "major" : 0,
          "minor" : 18,
          "patch" : 7,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.10",
          "value" : "7.3.10",
          "major" : 7,
          "minor" : 3,
          "patch" : 10,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.834026Z",
      "updatedAt" : "2024-04-09T16:12:34.834026Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/4a5810c8-b3eb-49d4-96e1-bb7e9b27b156"
        }
      }
    }, {
      "id" : "53e0d548-e7d7-431f-9efb-6694e43dfea3",
      "networkVersion" : "7.3.24",
      "zitiVersion" : "0.19.10",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.10",
          "value" : "0.19.10",
          "major" : 0,
          "minor" : 19,
          "patch" : 10,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.24",
          "value" : "7.3.24",
          "major" : 7,
          "minor" : 3,
          "patch" : 24,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.983997Z",
      "updatedAt" : "2024-04-09T16:12:34.983997Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/53e0d548-e7d7-431f-9efb-6694e43dfea3"
        }
      }
    }, {
      "id" : "57290619-49f0-49a1-9e37-f95c76c8d3a6",
      "networkVersion" : "7.3.16",
      "zitiVersion" : "0.19.2",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.2",
          "value" : "0.19.2",
          "major" : 0,
          "minor" : 19,
          "patch" : 2,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.16",
          "value" : "7.3.16",
          "major" : 7,
          "minor" : 3,
          "patch" : 16,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.859607Z",
      "updatedAt" : "2024-04-09T16:12:34.859607Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/57290619-49f0-49a1-9e37-f95c76c8d3a6"
        }
      }
    }, {
      "id" : "591c1414-e650-4798-9f06-61c691e319b3",
      "networkVersion" : "7.3.92",
      "zitiVersion" : "0.28.4",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.28.4",
          "value" : "0.28.4",
          "major" : 0,
          "minor" : 28,
          "patch" : 4,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.92",
          "value" : "7.3.92",
          "major" : 7,
          "minor" : 3,
          "patch" : 92,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.826205Z",
      "updatedAt" : "2024-04-09T16:12:34.826205Z",
      "platformFeatures" : [ {
        "displayName" : "browzer-app",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.90"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.router.enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.27.6"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "browzer",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "edge-router.wss-listener",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/591c1414-e650-4798-9f06-61c691e319b3"
        }
      }
    }, {
      "id" : "5f933bc7-8d67-4dc0-a643-f2265931124b",
      "networkVersion" : "7.3.33",
      "zitiVersion" : "0.20.10",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.10",
          "value" : "0.20.10",
          "major" : 0,
          "minor" : 20,
          "patch" : 10,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.33",
          "value" : "7.3.33",
          "major" : 7,
          "minor" : 3,
          "patch" : 33,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.066722Z",
      "updatedAt" : "2024-04-09T16:12:35.066722Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/5f933bc7-8d67-4dc0-a643-f2265931124b"
        }
      }
    }, {
      "id" : "6330885c-dc4c-470c-ba15-01007debae02",
      "networkVersion" : "7.3.13",
      "zitiVersion" : "0.18.10",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.10",
          "value" : "0.18.10",
          "major" : 0,
          "minor" : 18,
          "patch" : 10,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.13",
          "value" : "7.3.13",
          "major" : 7,
          "minor" : 3,
          "patch" : 13,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.843994Z",
      "updatedAt" : "2024-04-09T16:12:34.843994Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/6330885c-dc4c-470c-ba15-01007debae02"
        }
      }
    }, {
      "id" : "6a542525-4961-417f-a379-881430282083",
      "networkVersion" : "8.0.43",
      "zitiVersion" : "0.25.3",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.25.3",
          "value" : "0.25.3",
          "major" : 0,
          "minor" : 25,
          "patch" : 3,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "8.0.43",
          "value" : "8.0.43",
          "major" : 8,
          "minor" : 0,
          "patch" : 43,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.031846Z",
      "updatedAt" : "2024-04-09T16:12:35.031846Z",
      "platformFeatures" : [ {
        "displayName" : "browzer-app",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.90"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/6a542525-4961-417f-a379-881430282083"
        }
      }
    }, {
      "id" : "7a1b7ea8-6246-4a8c-8c89-fc5068c65904",
      "networkVersion" : "7.3.89",
      "zitiVersion" : "0.27.9",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.27.9",
          "value" : "0.27.9",
          "major" : 0,
          "minor" : 27,
          "patch" : 9,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.89",
          "value" : "7.3.89",
          "major" : 7,
          "minor" : 3,
          "patch" : 89,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.033643Z",
      "updatedAt" : "2024-04-09T16:12:35.033643Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router.wss-listener",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      }, {
        "displayName" : "browzer",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "edge.router.enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.27.6"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/7a1b7ea8-6246-4a8c-8c89-fc5068c65904"
        }
      }
    }, {
      "id" : "846ce92a-6a9b-4083-862e-270b6b9399bc",
      "networkVersion" : "7.3.21",
      "zitiVersion" : "0.19.7",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.7",
          "value" : "0.19.7",
          "major" : 0,
          "minor" : 19,
          "patch" : 7,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.21",
          "value" : "7.3.21",
          "major" : 7,
          "minor" : 3,
          "patch" : 21,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.967627Z",
      "updatedAt" : "2024-04-09T16:12:34.967627Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/846ce92a-6a9b-4083-862e-270b6b9399bc"
        }
      }
    }, {
      "id" : "84e9288b-7667-460e-80ab-91ef3bc247af",
      "networkVersion" : "7.3.7",
      "zitiVersion" : "0.08.3",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.08.3",
          "value" : "0.08.3",
          "major" : 0,
          "minor" : 8,
          "patch" : 3,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.7",
          "value" : "7.3.7",
          "major" : 7,
          "minor" : 3,
          "patch" : 7,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.885217Z",
      "updatedAt" : "2024-04-09T16:12:34.885217Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/84e9288b-7667-460e-80ab-91ef3bc247af"
        }
      }
    }, {
      "id" : "8b982c4f-aa1e-4f48-96fe-49a3af51b4af",
      "networkVersion" : "7.3.34",
      "zitiVersion" : "0.20.11",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.11",
          "value" : "0.20.11",
          "major" : 0,
          "minor" : 20,
          "patch" : 11,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.34",
          "value" : "7.3.34",
          "major" : 7,
          "minor" : 3,
          "patch" : 34,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.068320Z",
      "updatedAt" : "2024-04-09T16:12:35.068320Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/8b982c4f-aa1e-4f48-96fe-49a3af51b4af"
        }
      }
    }, {
      "id" : "8bcc9d2f-4b57-4fb5-a3f5-0b499bed4659",
      "networkVersion" : "7.3.17",
      "zitiVersion" : "0.19.3",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.3",
          "value" : "0.19.3",
          "major" : 0,
          "minor" : 19,
          "patch" : 3,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.17",
          "value" : "7.3.17",
          "major" : 7,
          "minor" : 3,
          "patch" : 17,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.864290Z",
      "updatedAt" : "2024-04-09T16:12:34.864290Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/8bcc9d2f-4b57-4fb5-a3f5-0b499bed4659"
        }
      }
    }, {
      "id" : "8d448b54-6ee6-4127-99c2-9c871fd917a9",
      "networkVersion" : "7.3.14",
      "zitiVersion" : "0.19.0",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.0",
          "value" : "0.19.0",
          "major" : 0,
          "minor" : 19,
          "patch" : 0,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.14",
          "value" : "7.3.14",
          "major" : 7,
          "minor" : 3,
          "patch" : 14,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.845526Z",
      "updatedAt" : "2024-04-09T16:12:34.845526Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/8d448b54-6ee6-4127-99c2-9c871fd917a9"
        }
      }
    }, {
      "id" : "9361afd2-3f4f-4df5-8864-90fbbc097872",
      "networkVersion" : "7.3.19",
      "zitiVersion" : "0.19.5",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.5",
          "value" : "0.19.5",
          "major" : 0,
          "minor" : 19,
          "patch" : 5,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.19",
          "value" : "7.3.19",
          "major" : 7,
          "minor" : 3,
          "patch" : 19,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.909457Z",
      "updatedAt" : "2024-04-09T16:12:34.909457Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/9361afd2-3f4f-4df5-8864-90fbbc097872"
        }
      }
    }, {
      "id" : "9abf385d-6818-4b96-9d04-d9b97ca3d804",
      "networkVersion" : "7.3.37",
      "zitiVersion" : "0.24.14",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.24.14",
          "value" : "0.24.14",
          "major" : 0,
          "minor" : 24,
          "patch" : 14,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.37",
          "value" : "7.3.37",
          "major" : 7,
          "minor" : 3,
          "patch" : 37,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.093794Z",
      "updatedAt" : "2024-04-09T16:12:35.093794Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/9abf385d-6818-4b96-9d04-d9b97ca3d804"
        }
      }
    }, {
      "id" : "a94ee1ba-f011-4b16-b2f5-fff05272f202",
      "networkVersion" : "7.3.25",
      "zitiVersion" : "0.19.11",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.11",
          "value" : "0.19.11",
          "major" : 0,
          "minor" : 19,
          "patch" : 11,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.25",
          "value" : "7.3.25",
          "major" : 7,
          "minor" : 3,
          "patch" : 25,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.000109Z",
      "updatedAt" : "2024-04-09T16:12:35.000109Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/a94ee1ba-f011-4b16-b2f5-fff05272f202"
        }
      }
    }, {
      "id" : "a97ddcb4-0260-4111-8f37-62ef499f114e",
      "networkVersion" : "7.3.12",
      "zitiVersion" : "0.18.9",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.9",
          "value" : "0.18.9",
          "major" : 0,
          "minor" : 18,
          "patch" : 9,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.12",
          "value" : "7.3.12",
          "major" : 7,
          "minor" : 3,
          "patch" : 12,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.842447Z",
      "updatedAt" : "2024-04-09T16:12:34.842447Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/a97ddcb4-0260-4111-8f37-62ef499f114e"
        }
      }
    }, {
      "id" : "b5a7efc0-eac2-4253-84fb-328405033179",
      "networkVersion" : "7.3.27",
      "zitiVersion" : "0.19.13",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.13",
          "value" : "0.19.13",
          "major" : 0,
          "minor" : 19,
          "patch" : 13,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.27",
          "value" : "7.3.27",
          "major" : 7,
          "minor" : 3,
          "patch" : 27,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.022489Z",
      "updatedAt" : "2024-04-09T16:12:35.022489Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/b5a7efc0-eac2-4253-84fb-328405033179"
        }
      }
    }, {
      "id" : "b7c5b2ed-0cd0-4f95-ace6-5c30be04e7b0",
      "networkVersion" : "7.3.69",
      "zitiVersion" : "0.25.13",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.25.13",
          "value" : "0.25.13",
          "major" : 0,
          "minor" : 25,
          "patch" : 13,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.69",
          "value" : "7.3.69",
          "major" : 7,
          "minor" : 3,
          "patch" : 69,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.805458Z",
      "updatedAt" : "2024-04-09T16:12:34.805458Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/b7c5b2ed-0cd0-4f95-ace6-5c30be04e7b0"
        }
      }
    }, {
      "id" : "c74e198e-7bda-4321-b24e-8234fb5a4a1c",
      "networkVersion" : "8.0.90",
      "zitiVersion" : "0.30.1",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : true,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.30.1",
          "value" : "0.30.1",
          "major" : 0,
          "minor" : 30,
          "patch" : 1,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : true,
        "version" : {
          "originalValue" : "8.0.90",
          "value" : "8.0.90",
          "major" : 8,
          "minor" : 0,
          "patch" : 90,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.937238Z",
      "updatedAt" : "2024-04-09T16:12:34.937238Z",
      "platformFeatures" : [ {
        "displayName" : "browzer-app",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.90"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.router.enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.27.6"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "browzer",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "edge-router.wss-listener",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      } ],
      "recommended" : true,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/c74e198e-7bda-4321-b24e-8234fb5a4a1c"
        }
      }
    }, {
      "id" : "c89377a6-99f2-41f4-8d8a-0dca8be71100",
      "networkVersion" : "7.3.11",
      "zitiVersion" : "0.18.8",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.8",
          "value" : "0.18.8",
          "major" : 0,
          "minor" : 18,
          "patch" : 8,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.11",
          "value" : "7.3.11",
          "major" : 7,
          "minor" : 3,
          "patch" : 11,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.840672Z",
      "updatedAt" : "2024-04-09T16:12:34.840672Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/c89377a6-99f2-41f4-8d8a-0dca8be71100"
        }
      }
    }, {
      "id" : "d07ac3d9-be06-4817-8d38-1337c572d9c8",
      "networkVersion" : "7.3.8",
      "zitiVersion" : "0.18.4",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.4",
          "value" : "0.18.4",
          "major" : 0,
          "minor" : 18,
          "patch" : 4,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.8",
          "value" : "7.3.8",
          "major" : 7,
          "minor" : 3,
          "patch" : 8,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.887503Z",
      "updatedAt" : "2024-04-09T16:12:34.887503Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/d07ac3d9-be06-4817-8d38-1337c572d9c8"
        }
      }
    }, {
      "id" : "db3c746d-0330-4361-a870-2605a81c5e01",
      "networkVersion" : "7.3.90",
      "zitiVersion" : "0.27.10",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.27.10",
          "value" : "0.27.10",
          "major" : 0,
          "minor" : 27,
          "patch" : 10,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.90",
          "value" : "7.3.90",
          "major" : 7,
          "minor" : 3,
          "patch" : 90,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.816169Z",
      "updatedAt" : "2024-04-09T16:12:34.816169Z",
      "platformFeatures" : [ {
        "displayName" : "browzer-app",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.90"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "edge-router.wss-listener",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "identity.external-id",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa.timeout-seconds",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.14"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.create.delete",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "edge.router.enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.27.6"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge.routers.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticators.list.authenticators",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.22.10"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "enrollment.refresh",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.9"
      }, {
        "displayName" : "browzer",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.26.5"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "identity.list.enrollments",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.11"
      }, {
        "displayName" : "auth-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "identity.disabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.4"
      }, {
        "displayName" : "authenticators.re.enroll",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.25.10"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.no-traversal",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.24.13"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/db3c746d-0330-4361-a870-2605a81c5e01"
        }
      }
    }, {
      "id" : "e17cf061-8e81-4289-aaf3-cde05766e542",
      "networkVersion" : "7.3.35",
      "zitiVersion" : "0.20.12",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.12",
          "value" : "0.20.12",
          "major" : 0,
          "minor" : 20,
          "patch" : 12,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.35",
          "value" : "7.3.35",
          "major" : 7,
          "minor" : 3,
          "patch" : 35,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.088237Z",
      "updatedAt" : "2024-04-09T16:12:35.088237Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/e17cf061-8e81-4289-aaf3-cde05766e542"
        }
      }
    }, {
      "id" : "e2b39f10-d47b-4b29-9c94-5ba15e1b19c3",
      "networkVersion" : "7.3.23",
      "zitiVersion" : "0.19.9",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.9",
          "value" : "0.19.9",
          "major" : 0,
          "minor" : 19,
          "patch" : 9,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.23",
          "value" : "7.3.23",
          "major" : 7,
          "minor" : 3,
          "patch" : 23,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.979812Z",
      "updatedAt" : "2024-04-09T16:12:34.979812Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/e2b39f10-d47b-4b29-9c94-5ba15e1b19c3"
        }
      }
    }, {
      "id" : "e7494fce-bc3a-4034-b02d-a86f6de6ed85",
      "networkVersion" : "7.3.32",
      "zitiVersion" : "0.20.9",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.9",
          "value" : "0.20.9",
          "major" : 0,
          "minor" : 20,
          "patch" : 9,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.32",
          "value" : "7.3.32",
          "major" : 7,
          "minor" : 3,
          "patch" : 32,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.060751Z",
      "updatedAt" : "2024-04-09T16:12:35.060751Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint.source-ip-transparency",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.32"
      }, {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/e7494fce-bc3a-4034-b02d-a86f6de6ed85"
        }
      }
    }, {
      "id" : "e931611a-f663-4a3f-9fe0-a148a88f8c9e",
      "networkVersion" : "7.3.29",
      "zitiVersion" : "0.20.2",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.20.2",
          "value" : "0.20.2",
          "major" : 0,
          "minor" : 20,
          "patch" : 2,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.29",
          "value" : "7.3.29",
          "major" : 7,
          "minor" : 3,
          "patch" : 29,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:35.027715Z",
      "updatedAt" : "2024-04-09T16:12:35.027715Z",
      "platformFeatures" : [ {
        "displayName" : "service.advanced-tunneler-to-endpoint",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "7.3.25"
      } ],
      "zitiFeatures" : [ {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.host-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type.intercept-v1",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.19.11"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.multi-process",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.2"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router.is-tunneler-enabled",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.20.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/e931611a-f663-4a3f-9fe0-a148a88f8c9e"
        }
      }
    }, {
      "id" : "ea804e63-8089-40ec-a8bf-a7945cb94d40",
      "networkVersion" : "7.3.6",
      "zitiVersion" : "0.18.2",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.18.2",
          "value" : "0.18.2",
          "major" : 0,
          "minor" : 18,
          "patch" : 2,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.6",
          "value" : "7.3.6",
          "major" : 7,
          "minor" : 3,
          "patch" : 6,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.876248Z",
      "updatedAt" : "2024-04-09T16:12:34.876248Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/ea804e63-8089-40ec-a8bf-a7945cb94d40"
        }
      }
    }, {
      "id" : "f21fd1a1-f1ed-41d5-bbef-682f65c01c4c",
      "networkVersion" : "7.3.22",
      "zitiVersion" : "0.19.8",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.8",
          "value" : "0.19.8",
          "major" : 0,
          "minor" : 19,
          "patch" : 8,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.22",
          "value" : "7.3.22",
          "major" : 7,
          "minor" : 3,
          "patch" : 22,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.971783Z",
      "updatedAt" : "2024-04-09T16:12:34.971783Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/f21fd1a1-f1ed-41d5-bbef-682f65c01c4c"
        }
      }
    }, {
      "id" : "fb4f09a3-5ac0-4097-999c-42d8162fd531",
      "networkVersion" : "7.3.18",
      "zitiVersion" : "0.19.4",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : true,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.4",
          "value" : "0.19.4",
          "major" : 0,
          "minor" : 19,
          "patch" : 4,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : true,
        "version" : {
          "originalValue" : "7.3.18",
          "value" : "7.3.18",
          "major" : 7,
          "minor" : 3,
          "patch" : 18,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.866011Z",
      "updatedAt" : "2024-04-09T16:12:34.866011Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : true,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/fb4f09a3-5ac0-4097-999c-42d8162fd531"
        }
      }
    }, {
      "id" : "ffbabca7-1de6-4215-a9f7-6e87d39a241b",
      "networkVersion" : "7.3.15",
      "zitiVersion" : "0.19.1",
      "minimumNetworkVersionForUpgrade" : null,
      "minimumEdgeRouterVersionForUpgrade" : null,
      "active" : true,
      "default" : false,
      "jsonNode" : {
        "zitiVersion" : {
          "originalValue" : "0.19.1",
          "value" : "0.19.1",
          "major" : 0,
          "minor" : 19,
          "patch" : 1,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : false
        },
        "active" : false,
        "defaultVersion" : false,
        "version" : {
          "originalValue" : "7.3.15",
          "value" : "7.3.15",
          "major" : 7,
          "minor" : 3,
          "patch" : 15,
          "suffixTokens" : [ ],
          "build" : null,
          "type" : "STRICT",
          "stable" : true
        }
      },
      "createdAt" : "2024-04-09T16:12:34.850088Z",
      "updatedAt" : "2024-04-09T16:12:34.850088Z",
      "platformFeatures" : [ ],
      "zitiFeatures" : [ {
        "displayName" : "service",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "terminator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "identity-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "authenticator",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.process",
        "deprecatedAt" : "0.20.0",
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "session",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "transit-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "config-type",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.16.5"
      }, {
        "displayName" : "identity.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      }, {
        "displayName" : "cas",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "service-policy",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "policy-advice",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "edge-router",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.0.0"
      }, {
        "displayName" : "posture-check.mfa",
        "deprecatedAt" : null,
        "removedAt" : null,
        "introducedAt" : "0.18.5"
      } ],
      "recommended" : false,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/ffbabca7-1de6-4215-a9f7-6e87d39a241b"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 42,
    "totalPages" : 1,
    "number" : 0
  }
}

Get Network Version

GET /v2/network-versions/{id}

Authorization

This endpoint requires read action on the network-version resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

networkControllers

true

edgeRouters

true

edgeRouterPolicies

true

endpoints

true

services

true

appWans

true

certificateAuthorities

true

hosts

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-versions/440e17e7-d627-4b50-b5b1-9f1f0ce78072' -i -X GET \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJOc0RIeVk0aFhHdm4xRjhBdnFmVVNRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ3ZTEyMzMyLWMxYmMtNGQ0OC05NjIxLTZlYmE0MDdjZGU5YyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTE1NSwiZXhwIjoxNzEyNjgyNzU1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ5ZDFmYWMxLWI0OTEtNGQ3Ni04NDg2LTFmMGNiNDljNzkyOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTE1NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.XhQef0CX3kdLyvmMQTdPWzfNxO0jdDcAAlWrLd2xN3eIsNrd4mGXvlnSHEMoKqPfiJiJKmlxqK2_WRJUwkA2-Wd7fapC2hm7f_ElhsEtNTDOpOjaHXdUuLZzlYjf3JvAhRWbgKeSvWJ1vnmfr8fFqCzgep0zj5yWjPsCqM-mpGjbDVAAmViU-5hD-UPoUyI1qXw26MkMhr-0QwmVJ_fx8gdMAYc0zs8kUae936ab3rBaaykbO3SUUa3K_k1yISUss2hIShfTGsb23o3NXWen4Bf5D1BvSFhF5GApvi-0ybNl3T8d8hCnIXX2ZBfkqgbyztJD32WiOGVGASq0kLz-FA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 3364

{
  "id" : "440e17e7-d627-4b50-b5b1-9f1f0ce78072",
  "networkVersion" : "7.3.5",
  "zitiVersion" : "0.18.0",
  "minimumNetworkVersionForUpgrade" : null,
  "minimumEdgeRouterVersionForUpgrade" : null,
  "active" : true,
  "default" : false,
  "jsonNode" : {
    "zitiVersion" : {
      "originalValue" : "0.18.0",
      "value" : "0.18.0",
      "major" : 0,
      "minor" : 18,
      "patch" : 0,
      "suffixTokens" : [ ],
      "build" : null,
      "type" : "STRICT",
      "stable" : false
    },
    "active" : false,
    "defaultVersion" : false,
    "version" : {
      "originalValue" : "7.3.5",
      "value" : "7.3.5",
      "major" : 7,
      "minor" : 3,
      "patch" : 5,
      "suffixTokens" : [ ],
      "build" : null,
      "type" : "STRICT",
      "stable" : true
    }
  },
  "createdAt" : "2024-04-09T16:12:34.874404Z",
  "updatedAt" : "2024-04-09T16:12:34.874404Z",
  "platformFeatures" : [ ],
  "zitiFeatures" : [ {
    "displayName" : "session",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "posture-check",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.16.5"
  }, {
    "displayName" : "edge-router",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "service-edge-router-policy",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "cas",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "policy-advice",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "edge-router-policy",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "config-type",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "terminator",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "service",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "authenticator",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "config",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "identity",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "transit-router",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "identity-type",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "service-policy",
    "deprecatedAt" : null,
    "removedAt" : null,
    "introducedAt" : "0.0.0"
  }, {
    "displayName" : "posture-check.process",
    "deprecatedAt" : "0.20.0",
    "removedAt" : null,
    "introducedAt" : "0.16.5"
  } ],
  "recommended" : false,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions/440e17e7-d627-4b50-b5b1-9f1f0ce78072"
    },
    "versions" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-versions",
      "profile" : "parent"
    }
  }
}

Network Group Limits

Create Network Group Limit

POST /v2/network-group-limits

Authorization

This endpoint requires create action on the network-group-limit resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkCount

Integer

true

defaultEndpointCount

Integer

true

networkGroupId

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-group-limits' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiItbFRGWHM5b1ZPZlQ5aWo4enNzdzZ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjlhNTc5MjM2LWViOTgtNDIyMi1hYjZlLWFmYTI2NGE2NjM4NyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMiwiZXhwIjoxNzEyNjgyOTIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRlYWY3MzhhLTZmOWMtNDI3Mi05NmNiLWM3YTgyOWI3NTQxOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.T-HN1oI7ymiYoOAOFmhB1SEJQq_9stcJBDC9BhU71o0Xvfz6I7bClRWGOhQeFj6ud5-_Og1vgmze4o6zXRmJy0TqcykLy1Jk6RM-_9o5kC9G-2TQMJroFNy0kmJN1Sqy0E7LzhkE-FrcNTla1DhFqnzpqx74fQBUclm0c_GTyl1TRyCWtU6UbcFXbuoKX9pnQx6h1hpXCTYRIAI7JQhFIVncTP_xtPet80mHumcEUB6-nrmPK0_bJgzquQixKTISuMMWT0zthX-v9bTcSMWpnqCeLC2eEcvCYFcQk75c5hb2ztS6K2r9I4VEtKkweBveI1ZiCKfuTOgoMGORvAOyNw' \
    -d '{"networkCount":1,"defaultEndpointCount":1,"networkGroupId":"63406b13-cb96-4a7a-a6bf-f117f344a31a"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 700

{
  "id" : "22a6010f-bc98-4fef-ab25-3a92c7f85da4",
  "networkCount" : 1,
  "defaultEndpointCount" : 1,
  "networkGroupId" : "63406b13-cb96-4a7a-a6bf-f117f344a31a",
  "createdBy" : "9a579236-eb98-4222-ab6e-afa264a66387",
  "createdAt" : "2024-04-09T16:15:22.729219Z",
  "updatedAt" : "2024-04-09T16:15:22.729219Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/63406b13-cb96-4a7a-a6bf-f117f344a31a",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/22a6010f-bc98-4fef-ab25-3a92c7f85da4"
    }
  }
}

Delete Network Group Limit

DELETE /v2/network-group-limits/{id}

Authorization

This endpoint requires delete action on the network-group-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-group-limits/0d35cb72-e38c-42f9-8ce4-d90675396fdb' -i -X DELETE \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJqZUVMb2VqOUZTQUhJSW5JR3A2ckt3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjExODZhMWVhLTE1YjMtNGZlNC04MDUyLWMyMjQ3NDJlZjJjNiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMiwiZXhwIjoxNzEyNjgyOTIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY2ZmIxNzE2LTdjY2YtNDk5NC05NTEwLWE5ZTZkYjNlOTc5YVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.rt4c7JxXXMx2BQf5I5hNqPOohjqWW23H2hio1Pg1tnWJuXL6fGKd-3z1rEgip3taULc1CfK4GSF2e1WbIB3qqZPRJ3W7HTtzE2j4y9KVc4_ZZO9OHv9APDzbAZWStrpPS7RbmtRVr57cEGVkBA5Cu910lxLvnaDeAIjLG2NfNmR33auUXIUnMrqy_6AhPwNeYzbQBhCUHf9HOnJ1W0cSVXY8do4zMyvZ9SjHQA_5WH_IsAYIyIdBHqkY_KR2s9sCrjo8NvGwj2FF27PycYxv-bzko2L6DMRgC6-EO_F3agWwALZDw6f6ZKuU2m8yN7lFRSIcWKbJfaaE-Bj-EiX4Bg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 756

{
  "id" : "0d35cb72-e38c-42f9-8ce4-d90675396fdb",
  "networkCount" : 1,
  "defaultEndpointCount" : 1,
  "networkGroupId" : "3e25249d-540a-4e54-a302-f5aae55f9153",
  "createdBy" : "cb44db71-b7dc-48de-8da2-83e77a493f10",
  "createdAt" : "2024-04-09T16:15:22.672996Z",
  "updatedAt" : "2024-04-09T16:15:22.678227Z",
  "deletedBy" : "1186a1ea-15b3-4fe4-8052-c224742ef2c6",
  "deletedAt" : "2024-04-09T16:15:22.678Z",
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3e25249d-540a-4e54-a302-f5aae55f9153",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/0d35cb72-e38c-42f9-8ce4-d90675396fdb"
    }
  }
}

Get Network Group Limit

GET /v2/network-group-limits/{id}

Authorization

This endpoint requires read action on the network-group-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-group-limits/c712a367-63bb-4e1f-9e01-4911834286e5' -i -X GET \
    -H 'Content-Type: application/x-www-form-urlencoded' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJGRmF3STBjMFY5THBwdEIwY1c3UUJRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImE5ODA5ODBkLWFkMzYtNDY4Ny05MTAzLTg5YjBhNmFmZWQ2OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMiwiZXhwIjoxNzEyNjgyOTIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA4MDlhMjQ3LTBmNTMtNGU0OS04MDFjLTU3NGRjNjY3OGM3NFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.l1EJSNmP4HR276-r00VYyYPAFS2TdQQEu1CD9jjAHs00KbV60rvr3X_CQz_kPrgRCzHyrTazWONGkAUCNssL_zMg9Yfm4fklzfHf2lGHEwmfaNeHZCGKtvxlv1t5AtULbNjbRewwRElmZ4oKf04IMbv53rvV-Z8SBKtS6gKOnlqCbMEZC5NPdUoNuinJXfmTmfXt0A7wvgSpLSV0_04ZHSZ5ZNEG52INEvOY8eCydJu-a3xBLojz485HODBjAO2RLz-EvnZ_2iojRA8SZwMGJ4mz9VzmTs8LbmmCeAhj0ry63HDHz28JDg6r0hP2Q3d47KmxbUHcpu0Y6a3mu1X7nA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 700

{
  "id" : "c712a367-63bb-4e1f-9e01-4911834286e5",
  "networkCount" : 1,
  "defaultEndpointCount" : 1,
  "networkGroupId" : "f363fd8b-4d99-4e72-b2a8-48a7d763291c",
  "createdBy" : "1366f11a-3d76-458c-9d45-9d7f5ce8bebc",
  "createdAt" : "2024-04-09T16:15:22.635519Z",
  "updatedAt" : "2024-04-09T16:15:22.635519Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f363fd8b-4d99-4e72-b2a8-48a7d763291c",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/c712a367-63bb-4e1f-9e01-4911834286e5"
    }
  }
}

Find Network Group Limits

GET /v2/network-group-limits

Authorization

This endpoint requires read action on the network-group-limit resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkCount

Integer

true

defaultEndpointCount

Integer

true

networkGroupId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-group-limits?networkCount=1' -i -X GET \
    -H 'Content-Type: application/x-www-form-urlencoded' \
    -H 'Accept: application/hal+json;includeProperties=id|networkCount' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJhZnM3MTE5cUFaMUpRUUMtd091Mkx3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImE3NTljYmU4LTg2MmEtNDk0ZS1iNDU0LWE3Njk2ZmE4M2VjNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMiwiZXhwIjoxNzEyNjgyOTIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQyOTQ0MTRhLWZiMzctNDc1MC04MDE0LWZhYWYwMThkNjQyNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.FXHaSgvgDszjjpah9ySGEOQay553zngu96wGBcD3XK224BIvKAJyopX5O4y6HqpDNrBw8cT5bA1XGBYLOW6ZxqSFDz6pjo33wAb6e3p20yjtl0mR6Y0r6mbVm7AX0ZdPPMpjpXSaxuKKh6kKimPmKZG6kY0zZVOCbJ8vm87ZQ27w8eBzxOm1bWpC_dy-JNxjpbvmwlHkndJuzdP_70HdnPN_PwWibePToGncUiNzzft8DLLk2phkb3RQZJsjogjK7T2g9JRUo4XTWn_WizLzsGmw-OU10f3IAXTA1nIP7vWuO7UHefQZ1s8mOZXhuKXqEteRyBUmi8ZWADcqXzDdHg'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;includeProperties=id|networkCount
Content-Length: 2627

{
  "_embedded" : {
    "networkGroupLimitList" : [ {
      "id" : "0d35cb72-e38c-42f9-8ce4-d90675396fdb",
      "networkCount" : 1,
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3e25249d-540a-4e54-a302-f5aae55f9153",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/0d35cb72-e38c-42f9-8ce4-d90675396fdb"
        }
      }
    }, {
      "id" : "22a6010f-bc98-4fef-ab25-3a92c7f85da4",
      "networkCount" : 1,
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/63406b13-cb96-4a7a-a6bf-f117f344a31a",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/22a6010f-bc98-4fef-ab25-3a92c7f85da4"
        }
      }
    }, {
      "id" : "4134850b-6b51-4506-81e1-434855d912b9",
      "networkCount" : 1,
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d3d918e3-39a9-4d4e-ae28-bc1366156f49",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/4134850b-6b51-4506-81e1-434855d912b9"
        }
      }
    }, {
      "id" : "c712a367-63bb-4e1f-9e01-4911834286e5",
      "networkCount" : 1,
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f363fd8b-4d99-4e72-b2a8-48a7d763291c",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/c712a367-63bb-4e1f-9e01-4911834286e5"
        }
      }
    }, {
      "id" : "f9d41763-82c5-45cc-9f65-140640c5e5b7",
      "networkCount" : 1,
      "_links" : {
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/174958ef-39f2-4d21-af48-aca1cf2c4da6",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/f9d41763-82c5-45cc-9f65-140640c5e5b7"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits?networkCount=1"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 5,
    "totalPages" : 1,
    "number" : 0
  }
}

Update Network Group Limit

PATCH /v2/network-group-limits/{id}

Authorization

This endpoint requires update action on the network-group-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkCount

Integer

true

defaultEndpointCount

Integer

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-group-limits/03eaa28c-9b9f-4732-9a3d-9e65bfcbdee2' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4R0ZFT0F1dHl6YzBQam9wWG52WWJBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUzNWMwYjkwLTQ2MzMtNDI5Yi1iODEzLWZiYTkwYjIyMmQ3ZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTMyMiwiZXhwIjoxNzEyNjgyOTIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjMyNDFkZjFiLTU3YTUtNGIzYS05Y2Q4LTY1MDE2YTY5MDlkOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTMyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QXfas2B78YTuD8QPW_o_GUQX60rmRvr7HB6DFR3GSCuOZdKSn9RTIRp2ZUkDCjYdJRBCWZwbCe3Wr7-_DMVZ2ofhsSq-1gZ_319brJMrUlPXGU3PGIU8i4mrS1-rbkeHTdwVj05HaR9xXAsYnC_FXLEVq1_e9wy-aIlSYVRPegLf0ba8v81dJcVZfjauY0bsPg61kH3m0miOI5cu6yDH5bkkPFTeL_Vp9sWGQo4UPXlQWQABNG4Kgvo4vUZ5z6dEOrjmSxX4h84Qvi0dH90uz1GJq9x38xrNpcRJ7X_vLtwfSSicgN9nqaNkv64JtiI3unBi5_SlGyA5j9eicB1rUw' \
    -d '{"networkCount":2,"defaultEndpointCount":null}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 700

{
  "id" : "03eaa28c-9b9f-4732-9a3d-9e65bfcbdee2",
  "networkCount" : 2,
  "defaultEndpointCount" : 1,
  "networkGroupId" : "5c2b028f-ed27-447a-8daa-b26672e4dbdf",
  "createdBy" : "e257a5a5-8ccb-491f-b644-de5ba5fa6c4b",
  "createdAt" : "2024-04-09T16:15:22.784982Z",
  "updatedAt" : "2024-04-09T16:15:22.794495Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5c2b028f-ed27-447a-8daa-b26672e4dbdf",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-group-limits/03eaa28c-9b9f-4732-9a3d-9e65bfcbdee2"
    }
  }
}

Network Limits

Create Network Limit

POST /v2/network-limits

Authorization

This endpoint requires create action on the network-limit resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

endpointCount

Integer

true

networkId

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-limits' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJHUFhUeW9rZkxBMkRzZ3VwbXZNMWJRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijg3NGFkOTM3LTVhYjItNDE4MC1iZDBjLWVjMmEyMzg3OTE0MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM0MGZiMDVhLTZmNTctNDQzMy04YmI4LWNmOGJkMDg2MTFlZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.CUhsFlBGkLe6oKp0xdcNl82l3BR2hpKxXYTMXiPmuWWC4fzY2SEWTnhD5CHa_oxJ5FFWNATIGbpmFk3YAJDdQguV-c9nMZvcBGhscJVUXTFPCiX8eCMKOrkMtqPvOoG9Ka62yAl9Vf6hbtdxFVbJFZ4jjTAEYKJnILKiP7hrVE2QDem1EiVF9n2ogiDExq4EnAmgI-Bgrdw01xRS6C8f7gE6xOlhJsgRtN9AhOt7mgKI7IXoUkCku_HYIq5NtWuO2C-HFZhlq-LkkDb6ogR-jAQL_Vy9nYMClRZd5h-hYGbFXXyz0-1gW1dBU7Zsedfc-C_xnyl1HfnF35I0HIIzNw' \
    -d '{"endpointCount":1,"networkId":"d15f8b96-4fe7-4ecb-b5a5-75fc918c95c9"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 854

{
  "id" : "debcc9fe-a1c4-4480-bb09-cd5c365f01b9",
  "endpointCount" : 1,
  "networkId" : "d15f8b96-4fe7-4ecb-b5a5-75fc918c95c9",
  "createdBy" : "874ad937-5ab2-4180-bd0c-ec2a23879143",
  "createdAt" : "2024-04-09T16:15:44.456190Z",
  "updatedAt" : "2024-04-09T16:15:44.456190Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/d15f8b96-4fe7-4ecb-b5a5-75fc918c95c9",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits/debcc9fe-a1c4-4480-bb09-cd5c365f01b9"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/704e4ab5-fbbc-4672-9249-80f51b9393ee",
      "title" : "Create NetworkLimit",
      "profile" : "meta"
    }
  }
}

Delete Network Limit

DELETE /v2/network-limits/{id}

Authorization

This endpoint requires delete action on the network-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-limits/455f1cb6-9a87-4cb9-bcd4-4bc995d29391' -i -X DELETE \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ0QlA5aTF6SHp2clA1dktTaEFUM1NBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI1MzMyNjFlLWQ4MjAtNGZmMy1hNGFmLWU0OWJhNWZhMjllZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA2NmM2YjQzLWIxY2YtNDlhNS05MDZkLTRiMzg4ZDZmMTk3NlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ibw2VSDg7T94rcWRdGzV1tZ2utdbf9kKnD1dGm5DH8uW9Dot-4q66albCyAO5La7wrrcMYRsmjK_IHdEGpdthzvLG5ApmAPUn5KDQ77eTvHWdpBY0QukvWXUEAQL1_xw_gji028DBzsgyfXhLHKde2kFKqgqmsGtX8yXjrnus8n0ovkWkXoIzLT23QLCcyCKrk5lcsHlxfwIIVkTprHJCcyP_8u1EhRfuZ4alD5OyH5YfK47pCOap4TSD2qzrgSvpLDIhvJPzhyXFbMuSn97OOyP_LotH-pN8vXaWnTMylopvG4shX0ZuogVH2QuSQrS_lVvmn3-KMpZBIBwc8UEXQ'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 910

{
  "id" : "455f1cb6-9a87-4cb9-bcd4-4bc995d29391",
  "endpointCount" : 1,
  "networkId" : "2dd04624-873a-4bb5-ae15-fcf3e6326fc8",
  "createdBy" : "447766d1-f48f-4998-acba-4cb5b1741c96",
  "createdAt" : "2024-04-09T16:15:44.267333Z",
  "updatedAt" : "2024-04-09T16:15:44.279560Z",
  "deletedBy" : "2533261e-d820-4ff3-a4af-e49ba5fa29ef",
  "deletedAt" : "2024-04-09T16:15:44.279Z",
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/2dd04624-873a-4bb5-ae15-fcf3e6326fc8",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits/455f1cb6-9a87-4cb9-bcd4-4bc995d29391"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/1f247a67-0e58-42f0-ae69-9f15c6464876",
      "title" : "Delete NetworkLimit",
      "profile" : "meta"
    }
  }
}

Get Network Limit

GET /v2/network-limits/{id}

Authorization

This endpoint requires read action on the network-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-limits/9c4197fa-3a40-4810-b0fb-50d8d2e6c3ec' -i -X GET \
    -H 'Content-Type: application/x-www-form-urlencoded' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJUbGlfQkFUbDF5TVFrM0JtYl9qdWF3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMwMDA2MzdmLTFlOWItNDJlZC05YzJmLTEzNWJlMTk5NDM1YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIyYzU1OGJiLTc3ZGYtNDhmYS1iNTQwLTgzM2EwZTIwOGEzMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.pss7zG5sjvzkbQThmbiVj7WAXvTU6qptzyw5j6Gl4Q9gtfX3kpDv1nRrkGlNv1YiUXSWD7tDewJ1YUbRybKLavDgvu0dRKc0bshv8RpuXJBYaqXzD8ui82REBOFnBN1DO43xJk5awNdYisu_qxFHRpzjiDE5pW3WZmqHagtwYmyzdlG9qkZFUly5AWycALBbziIHAbJeAAW0A643hPZzaLhTIoiHjUMXa42Jn291T2gfdOqWEW3I-GHSpPVa0rGHlIjbln1dlP2S3cz37hBlD3d1-36V4gVRV9-ILgkpkVB7UkyOwbPoIafSb-CicL8sQrEPVHhwO3AfvRklHBVDog'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 648

{
  "id" : "9c4197fa-3a40-4810-b0fb-50d8d2e6c3ec",
  "endpointCount" : 1,
  "networkId" : "70c5dd6e-6e15-43bd-9b6e-03b3a72869e8",
  "createdBy" : "598ff5cc-1a44-453d-a337-d7971a817dbb",
  "createdAt" : "2024-04-09T16:15:44.381939Z",
  "updatedAt" : "2024-04-09T16:15:44.381939Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/70c5dd6e-6e15-43bd-9b6e-03b3a72869e8",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits/9c4197fa-3a40-4810-b0fb-50d8d2e6c3ec"
    }
  }
}

Find Network Limits

GET /v2/network-limits

Authorization

This endpoint requires read action on the network-limit resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

endpointCount

Integer

true

networkId

String

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedBy

String

true

deletedAt

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-limits?networkId=ce24cb31-e688-4256-a95d-2c5abc4489fa' -i -X GET \
    -H 'Content-Type: application/x-www-form-urlencoded' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJwU3huUFl3RlJfOXI4aXRZamt0NFhRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjRhOThiNWJiLTFmZDMtNGQxOC04MWIwLWEzNTYzZmZhNjBiMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVlOTJjNDM0LTFkMzAtNGZiNC04NGM2LTI5YzhkNzUyNDI1ZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.VJNQplAe-8d1xzA_As5cVRoVzJG7ZvL9bIPmn5BHYypMgWHNKH71OxECZyGXtljZEaUn9To-spvUrSYrTCI3S4ePeee4-e3gWOhjcE5l8sZ9cdonoPtNFLUv792aIi9wDMrZ40o8cTMSTrG8Bd15TKjSgWVRg7ICJ3W4cOkasT_dwG3axU6x0L5tVwGTAEFPMxwGLxCMU8ZHy3_0YL6nKghNYRgXGHKYFKzJpdzplPW1hmTLwaCcMzEUwz9wyX5nRDjC-cM54R5qaGQJk6yEBpy3vlCV73M90NzTJ2H3tCvS30UG5TTtRcWwiGe_wPg1bHkk86KzPnNHLXQR90d29Q'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1045

{
  "_embedded" : {
    "networkLimitList" : [ {
      "id" : "9c9cef96-e6ee-4ffa-aea2-b9877f216639",
      "endpointCount" : 1,
      "networkId" : "ce24cb31-e688-4256-a95d-2c5abc4489fa",
      "createdBy" : "cfca44bd-d856-4f0d-b173-cf11a1452f2d",
      "createdAt" : "2024-04-09T16:15:44.410841Z",
      "updatedAt" : "2024-04-09T16:15:44.410841Z",
      "deletedBy" : null,
      "deletedAt" : null,
      "_links" : {
        "network" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/networks/ce24cb31-e688-4256-a95d-2c5abc4489fa",
          "profile" : "parent"
        },
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits/9c9cef96-e6ee-4ffa-aea2-b9877f216639"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits?networkId=ce24cb31-e688-4256-a95d-2c5abc4489fa"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

Update Network Limit

PATCH /v2/network-limits/{id}

Authorization

This endpoint requires update action on the network-limit resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

endpointCount

Integer

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v2/network-limits/9943aefe-453e-4452-9417-e31829a7f985' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJFd2xLQVNuWGtlTzdxclZRNnNBTHR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM2OWNmZTUwLTQ3NWUtNDdkZS1iMTMzLWQyOGNiNGM2ZTUxMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTM0NCwiZXhwIjoxNzEyNjgyOTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNmNzdjN2Y0LTg2NTctNGIzMi05NDg4LTk5ZWJjNGJmOTI3M1wiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JjKEmvKAUNw6rENdTFIA3W_8l4uFnYhjxL82Cu6TmxFQdd05P6fo6r4dsc4HCQB5dmEQMxCKQKNFjDXRJ6wh1TJOCfEcB7rhK0HNKy8D04sFz4UOkgPz3IVNbvZrGBvutFlL9DlU35pkaRrgQThlIVfHARJC5hf5o_Ue2haLUavLVqfwfZLDn5NoACLjOs26bSxXlWCpLcy-qDDytVzdxd0uLXDin02o92n80oqs0FOXI67HpXbkULTs2if92ie9OJ6Lgh6mCrtAk0co5iEP-t5W-Ra5guA-TBvZLTo0-ik97Z5EvZ2tZTCkUTentE6xmcLKPsXdbHkGw-W1V_D8yA' \
    -d '{"endpointCount":2}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 854

{
  "id" : "9943aefe-453e-4452-9417-e31829a7f985",
  "endpointCount" : 2,
  "networkId" : "fc82def8-0206-4bb1-a477-6dc226f972bd",
  "createdBy" : "a26a881f-de09-4862-8911-ab8bf8382ab6",
  "createdAt" : "2024-04-09T16:15:44.317583Z",
  "updatedAt" : "2024-04-09T16:15:44.331352Z",
  "deletedBy" : null,
  "deletedAt" : null,
  "_links" : {
    "network" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/networks/fc82def8-0206-4bb1-a477-6dc226f972bd",
      "profile" : "parent"
    },
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/network-limits/9943aefe-453e-4452-9417-e31829a7f985"
    },
    "execution" : {
      "href" : "https://gateway.production.netfoundry.io/core/v2/executions/92016fd8-5779-46d9-8bf9-5bca5e761943",
      "title" : "Update NetworkLimit",
      "profile" : "meta"
    }
  }
}

DNS Zones

Create Dns Zone

POST /v3/dns-zones

Authorization

This endpoint requires create action on the dns-zone resource type.

Path parameters

No parameters.

Query parameters

No parameters.

Request fields

Path Type Optional Description

networkGroupId

String

true

name

String

true

route53ZoneId

String

true

domain

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWbUF2c3Z2dU5qM2ZwbnRnUDBJTVd3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhlZmM5ZTU0LTVhNGItNDNmMi1iZGVlLWU3MmFjMDZjOWRhMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNhZDdmZDVjLTJmZTQtNGQ1MC1hMmIzLTkwM2I3NmM0MmIwNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.C9KkalN0_ZY9bMiPmt2Gg5dGDWpwMuJbwqbkhDMsJvST-8GQls66hTqiKcBiFkqf37Km-Wh3tl4AJdCJSm9aQVOsRq392MeON3vC5OEpaTOlk5ex_oFdIguo_soHQ04qq7__E2PsATD7QrRi1v25FTKLYMS5mpNRUk4etu-mg6TX6zS_iinLnUwZ7ukoMAEIolDAsnU6TzoiKYpbySoU3XJP4NW76Xpm9DDXNuDIQ_nK-lRcFMZhnELb2-LzoH_xIf61dq6RYWngMlGi8KV2QoIg1a8sBclSi1kssIMjjrPKr-ZUzi7wYaGy68ZbEwTT_0lRNerHWIiVSbzXrzDU6A' \
    -d '{"networkGroupId":"2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4","name":"testName-1309","route53ZoneId":"zoneId","domain":null}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 780

{
  "id" : "1e11cd23-ee93-40c1-a4e2-d05068e4aade",
  "networkGroupId" : "2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
  "name" : "testName-1309",
  "route53ZoneId" : "zoneId",
  "domain" : "domainResult",
  "validated" : false,
  "createdBy" : "8efc9e54-5a4b-43f2-bdee-e72ac06c9da2",
  "createdAt" : "2024-04-09T16:14:51.016499Z",
  "updatedAt" : "2024-04-09T16:14:51.016499Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/1e11cd23-ee93-40c1-a4e2-d05068e4aade",
      "title" : "testName-1309"
    },
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
      "profile" : "parent"
    }
  }
}

Delete Dns Zone

DELETE /v3/dns-zones/{id}

Authorization

This endpoint requires delete action on the dns-zone resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones/54b60c5b-84c7-4adb-b3a5-b52559615648' -i -X DELETE \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJSYTA0aDZQb1BvX2ZmRHdCV2gyZ0F3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM0YzJmMWMyLTQ1MDgtNGVmYS1iM2MyLWRiMGMwZmYxNWNhZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBlZjkyMWNmLTNkMTUtNDZhNi1hNDU2LWRlMDEzMWRlODQwYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QJM5t8xZm9S0COYbCT0RSSPUWNTiswL20Mwjcz4qum8hSw72dIIjUv5WMHjWSmxrwcpHdOmrpyTkgjC-CoCpAr1LFcDqPkn3cJs5EdZn6b-KiJcfInKdgBSk5-zhz9-KY9WQJQVtkvDRqP6JLmt_hosqOB6Mjcj9__CHSop9a3AUvoV2ZS8k6MGYaTnj4zCcwSPJtbMSM4O4nW2WpJveAw6UPovWMTeqSlvsHPeDXK2dyPA8fGc4o4KeRhi0n90eGpQ6oHB77DpJpMmUKlsWGA-xwbDl7e2uFB9OZXCp86PDeHocXI2E4KLI6_rrqh09iHe4EJV9df7hAV3suUX4_w'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 829

{
  "id" : "54b60c5b-84c7-4adb-b3a5-b52559615648",
  "networkGroupId" : "18145706-85fa-44c3-85df-aa56e49e0557",
  "name" : "toDelete",
  "route53ZoneId" : "zoneId-1330",
  "domain" : "domain.io.",
  "validated" : false,
  "createdBy" : "163e8d84-847f-48ba-b82c-192e8dc786a3",
  "createdAt" : "2024-04-09T16:14:51.244280Z",
  "updatedAt" : "2024-04-09T16:14:51.259788Z",
  "deletedAt" : "2024-04-09T16:14:51.259Z",
  "deletedBy" : "c4c2f1c2-4508-4efa-b3c2-db0c0ff15caf",
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/54b60c5b-84c7-4adb-b3a5-b52559615648",
      "title" : "toDelete"
    },
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/18145706-85fa-44c3-85df-aa56e49e0557",
      "profile" : "parent"
    }
  }
}

Get Dns Zone

GET /v3/dns-zones/{id}

Authorization

This endpoint requires read action on the dns-zone resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones/a8eb8178-ae4f-4092-b3c6-c078a25557fc' -i -X GET \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJCX3M0UXFCNFdMSTQ2V051ZlZyeXlnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVkZGRlMDkwLThjYzItNDExYy1hZDgzLTZkNDFhYmQ3ZjQ1MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRmZWM2MmEyLWZlYWUtNDBiNy1hNzQyLThhMTk3YmE4ZWQ2NVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Cxn60MlhlPCnAjYBJGqmHN2HW1S-aazdmuCSKclQFuhQdyvMX1y7OffpkM92HYGtStFr4j_dk-Nj4lcqEC93b7CWz8OMyL2JhRMNAoeQep36sPON0IYemAm3RG4Lx-wNuIS2mzGvJzHHaYBkZSZAdrS3fNy_x1txJo_PvHX4wt7-ydBHMjWNeES8Zhfl_yQS6V0BkD5XBRQIOcouLLgwYmFk29zLHZdgUWQlfXDuugbsUHPuDxeUucmtv0IiwYKh8pVHkIDL_osPlAMiSk4nvWvVxhl9V1wBHWslu7AuwCMdshJIgJkMvE-hhWDJLzRrkYeQMaGl2qBIcvnZWVEJxw'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 793

{
  "id" : "a8eb8178-ae4f-4092-b3c6-c078a25557fc",
  "networkGroupId" : "84ec1fb2-d1ba-4b0d-ab89-f23ba2261302",
  "name" : "test-v3-domain.com",
  "route53ZoneId" : "zoneId-1294",
  "domain" : "domain.io.",
  "validated" : false,
  "createdBy" : "a7a164be-929d-4329-be89-70662e5e6be7",
  "createdAt" : "2024-04-09T16:14:50.893678Z",
  "updatedAt" : "2024-04-09T16:14:50.893678Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/a8eb8178-ae4f-4092-b3c6-c078a25557fc",
      "title" : "test-v3-domain.com"
    },
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/84ec1fb2-d1ba-4b0d-ab89-f23ba2261302",
      "profile" : "parent"
    }
  }
}

Find Dns Zones

GET /v3/dns-zones

Authorization

This endpoint requires read action on the dns-zone resource type.

Path parameters

No parameters.

Query parameters

Supports standard paging query parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

content

Array[Object]

true

page

Object

true

page.size

Integer

true

page.totalElements

Integer

true

page.totalPages

Integer

true

page.number

Integer

true

Path Optional Description

self

true

network

true

Embedded resources

Path Type Optional Description

id

String

true

networkGroupId

String

true

name

String

true

route53ZoneId

String

true

domain

String

true

validated

Boolean

true

createdBy

String

true

createdAt

String

true

updatedAt

String

true

deletedAt

String

true

deletedBy

String

true

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones' -i -X GET \
    -H 'Accept: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJYZ3hNLWF4dEZuWjlIN2phbW4yVVZRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjEzOTkyMzNjLTYxZjYtNGQzNS1iY2FmLTJjYzA5Y2RjNGMyZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRjNTM1MGNmLWQ3M2QtNGM2OC1iYTFiLWNiZmU4ODQ2NmRmMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.IwI8CBgsoZms-nMlfUfnhs-1y7q4KPlANftAjjRyGYzl4wJfvAvbxAF0nxfevENuKR2TdMLYQvn3WKqjmHS8o67P7RaPYmpZ78qXELEhk3TyUWDXfe9Ul0_z0o092ia3HHnOCTgYKaRlukagw9kexZx8_-q1FDL-37_WZBYdBT_PTpyZiWBfAXLOLmYqDM0RFfDL2njI6OXLx1QffG_fZ8hB4jc4DWTpxfFhwXVkRgtEia5i8MV3wOoTmVfaS8zC9kBKMNt6z2xNsxoh7GjO173baHjRMPdDKkVW0xJ16j9R6IYYw9rX8ueuL7510eQBkz8bBNTJvocPbVaRSBiiKA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 11691

{
  "_embedded" : {
    "dnsZoneList" : [ {
      "id" : "13b8c943-0b14-47e6-9ffa-a93a723b1701",
      "networkGroupId" : "0004a77d-9acd-4f91-a527-81c022fb4176",
      "name" : "updated-1290",
      "route53ZoneId" : "zoneId-1289",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "4d1cb565-1dad-42af-ac86-18cea529b0fc",
      "createdAt" : "2024-04-09T16:14:50.757180Z",
      "updatedAt" : "2024-04-09T16:14:50.802054Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/13b8c943-0b14-47e6-9ffa-a93a723b1701",
          "title" : "updated-1290"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/0004a77d-9acd-4f91-a527-81c022fb4176",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "1419de2b-8805-4b0a-9072-b275f3d3ced7",
      "networkGroupId" : "dc4aaa56-7ead-4d3f-aaea-0d8b4c04ee9a",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1325",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "22b1188c-d3e9-437b-a684-212234a65a51",
      "createdAt" : "2024-04-09T16:14:51.184249Z",
      "updatedAt" : "2024-04-09T16:14:51.184249Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/1419de2b-8805-4b0a-9072-b275f3d3ced7",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/dc4aaa56-7ead-4d3f-aaea-0d8b4c04ee9a",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "1e11cd23-ee93-40c1-a4e2-d05068e4aade",
      "networkGroupId" : "2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
      "name" : "testName-1309",
      "route53ZoneId" : "zoneId",
      "domain" : "domainResult",
      "validated" : false,
      "createdBy" : "8efc9e54-5a4b-43f2-bdee-e72ac06c9da2",
      "createdAt" : "2024-04-09T16:14:51.016499Z",
      "updatedAt" : "2024-04-09T16:14:51.016499Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/1e11cd23-ee93-40c1-a4e2-d05068e4aade",
          "title" : "testName-1309"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "480be52d-7074-4c00-8f4c-f9719ee34d53",
      "networkGroupId" : "f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1302",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "4aaed21c-d078-4e4d-9642-77e6b6594f02",
      "createdAt" : "2024-04-09T16:14:50.953835Z",
      "updatedAt" : "2024-04-09T16:14:50.953835Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/480be52d-7074-4c00-8f4c-f9719ee34d53",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "4b4ed034-312a-4beb-a705-566c9d75da35",
      "networkGroupId" : "2e7d49a7-bea0-4586-af12-aeb03556549e",
      "name" : "firstName-1314",
      "route53ZoneId" : "zoneId-1315",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "11fbf275-54de-42c0-b7df-f979d7d780c7",
      "createdAt" : "2024-04-09T16:14:51.058824Z",
      "updatedAt" : "2024-04-09T16:14:51.058824Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/4b4ed034-312a-4beb-a705-566c9d75da35",
          "title" : "firstName-1314"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2e7d49a7-bea0-4586-af12-aeb03556549e",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "53f132e0-5098-49e0-89ef-0ee095c52629",
      "networkGroupId" : "2e7d49a7-bea0-4586-af12-aeb03556549e",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1313",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "2ee67464-77dc-4887-b1ba-d83e82972b00",
      "createdAt" : "2024-04-09T16:14:51.058048Z",
      "updatedAt" : "2024-04-09T16:14:51.058048Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/53f132e0-5098-49e0-89ef-0ee095c52629",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2e7d49a7-bea0-4586-af12-aeb03556549e",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "5c00059a-42d2-4424-b570-519661f6720f",
      "networkGroupId" : "0004a77d-9acd-4f91-a527-81c022fb4176",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1288",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "09e75585-ffa8-485f-92df-6c3d665f9aaa",
      "createdAt" : "2024-04-09T16:14:50.755934Z",
      "updatedAt" : "2024-04-09T16:14:50.755934Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/5c00059a-42d2-4424-b570-519661f6720f",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/0004a77d-9acd-4f91-a527-81c022fb4176",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "6830418d-5c3f-4aa8-b2fb-ff6d9a9976ba",
      "networkGroupId" : "2e7d49a7-bea0-4586-af12-aeb03556549e",
      "name" : "toUpdate-1316",
      "route53ZoneId" : "zoneId-1317",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "59ea96fe-7738-44eb-ac56-c1165e52931f",
      "createdAt" : "2024-04-09T16:14:51.059263Z",
      "updatedAt" : "2024-04-09T16:14:51.059263Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/6830418d-5c3f-4aa8-b2fb-ff6d9a9976ba",
          "title" : "toUpdate-1316"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2e7d49a7-bea0-4586-af12-aeb03556549e",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "8c0afbd5-4a56-4129-b3c3-eab939f8ed9e",
      "networkGroupId" : "2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1308",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "781e9101-9e99-4baf-aff1-b27fe33c8d7a",
      "createdAt" : "2024-04-09T16:14:50.991464Z",
      "updatedAt" : "2024-04-09T16:14:50.991464Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/8c0afbd5-4a56-4129-b3c3-eab939f8ed9e",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/2f3161ae-8a84-47b1-a6a7-52fab9b6ffe4",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "92b7842e-1cad-4633-9ed9-758d23dd47d8",
      "networkGroupId" : "943a0312-26e7-480f-9fb4-8c57e2d3f880",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1321",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "1e9b760e-443b-4a54-944f-99422a04367b",
      "createdAt" : "2024-04-09T16:14:51.085613Z",
      "updatedAt" : "2024-04-09T16:14:51.085613Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/92b7842e-1cad-4633-9ed9-758d23dd47d8",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/943a0312-26e7-480f-9fb4-8c57e2d3f880",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "9c90310b-00bf-4856-9ac2-894a58bf6829",
      "networkGroupId" : "f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
      "name" : "updated-1304",
      "route53ZoneId" : "zoneId-1303",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "1b1d3c13-86e9-4e5f-b1d3-59da0521106f",
      "createdAt" : "2024-04-09T16:14:50.954630Z",
      "updatedAt" : "2024-04-09T16:14:50.962301Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/9c90310b-00bf-4856-9ac2-894a58bf6829",
          "title" : "updated-1304"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "a8eb8178-ae4f-4092-b3c6-c078a25557fc",
      "networkGroupId" : "84ec1fb2-d1ba-4b0d-ab89-f23ba2261302",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1294",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "a7a164be-929d-4329-be89-70662e5e6be7",
      "createdAt" : "2024-04-09T16:14:50.893678Z",
      "updatedAt" : "2024-04-09T16:14:50.893678Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/a8eb8178-ae4f-4092-b3c6-c078a25557fc",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/84ec1fb2-d1ba-4b0d-ab89-f23ba2261302",
          "profile" : "parent"
        }
      }
    }, {
      "id" : "b48d9151-156d-48b6-a652-43fd276e0811",
      "networkGroupId" : "053a8633-981f-44fe-801f-c1a9c0771c9d",
      "name" : "test-v3-domain.com",
      "route53ZoneId" : "zoneId-1298",
      "domain" : "domain.io.",
      "validated" : false,
      "createdBy" : "86178957-3f62-4829-8e96-440bd8ded4a0",
      "createdAt" : "2024-04-09T16:14:50.935468Z",
      "updatedAt" : "2024-04-09T16:14:50.935468Z",
      "deletedAt" : null,
      "deletedBy" : null,
      "_links" : {
        "self" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/b48d9151-156d-48b6-a652-43fd276e0811",
          "title" : "test-v3-domain.com"
        },
        "network-group" : {
          "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/053a8633-981f-44fe-801f-c1a9c0771c9d",
          "profile" : "parent"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones"
    }
  },
  "page" : {
    "size" : 3500,
    "totalElements" : 13,
    "totalPages" : 1,
    "number" : 0
  }
}

Update Dns Zone

PATCH /v3/dns-zones/{id}

Authorization

This endpoint requires update action on the dns-zone resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones/9c90310b-00bf-4856-9ac2-894a58bf6829' -i -X PATCH \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJXNFcyUFdkNkpmVTQxT2k3N25mNUVRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA1NTA0MTQ3LTA3NjItNDZlZS1hYmNmLTFkNTU3YjQ2NjhmOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNlMThjNzc0LWYxNzItNGFmZC1iMzk1LWJmMWVjNTIyOTNjYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QnKf6R24HSNfzPfv0_6d57IS3o8qAdp-mSFzhchn7chBNLCOJVNvGOtJ9qaEY_4ZskTzx42EcSObm4voPf2aQxsQWXjlSB4mMgP4A6KvouBaW5Czlx9EoGahNrrwy_KfT4NRu9dmFxCvJUuZYlAO1ChMgKZbj1EO2OxpOdWlyt4141T2e0oLMhE-paqcthdd_ax6-8WlPEj8ZZuLnC39czXga9YLB_BsMECLBV7rHca-8vTz1L9Tom9Nh0dSt27o9LMfe2cGrfiE9-PSCkGNerCvMF6UfTE87Y2DSlHnQNWlmp3h5bKnD7tsTWRQia9FgwaMc4hLhmBK6cE_R81xZw' \
    -d '{"name":"updated-1304"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 781

{
  "id" : "9c90310b-00bf-4856-9ac2-894a58bf6829",
  "networkGroupId" : "f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
  "name" : "updated-1304",
  "route53ZoneId" : "zoneId-1303",
  "domain" : "domain.io.",
  "validated" : false,
  "createdBy" : "1b1d3c13-86e9-4e5f-b1d3-59da0521106f",
  "createdAt" : "2024-04-09T16:14:50.954630Z",
  "updatedAt" : "2024-04-09T16:14:50.962301Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/9c90310b-00bf-4856-9ac2-894a58bf6829",
      "title" : "updated-1304"
    },
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/f1bab0c3-1989-4aa1-9c52-d2a0ad9190e5",
      "profile" : "parent"
    }
  }
}

Update Dns Zone

PUT /v3/dns-zones/{id}

Authorization

This endpoint requires update action on the dns-zone resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

Path Type Optional Description

name

String

true

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

Path Optional Description

self

true

network

true

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones/13b8c943-0b14-47e6-9ffa-a93a723b1701' -i -X PUT \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJSNUJtOVB3bFMyOFlwZXVGTHZRbTl3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUwNWIwNjI0LWEzNWEtNDc5Yy05ZGFkLWIxMWY3MjRjY2JiZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MCwiZXhwIjoxNzEyNjgyODkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk3YjY4Y2NiLTQyNTAtNDZmZi1hNzFlLTI2MzNmYmI5NjU4MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Xew-vsLUGIIVWJh_krNWW05sSLjxllso_kafAxincUZddWh4ct5CRsRlxeQLK7wVmwG-le4vfaJCeLhrXCHlBbvS91SCHVivhPm7eR_neMw6vju9ClwgqcWWGS4BbaJADE51vDo5_9N_228NfUxXpXPTutBceDucVTITt43UFLo8pN_Dyy9zCdevWWo0y5dc3p9efMGXXvBYWpGdx9GOmFTe9AhJYOMf3rJdLDfwYcFBuv2YTNejtWxvW8O3JFXxhvO4OmjprHGQtJm-yyuXQ0pQ4CJ5Z6IiFPSfA6Qm83DAxOV4aPUvt3OswQSjSciQFhIjwPjnI3k9fJrcXh6PXQ' \
    -d '{"name":"updated-1290"}'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 781

{
  "id" : "13b8c943-0b14-47e6-9ffa-a93a723b1701",
  "networkGroupId" : "0004a77d-9acd-4f91-a527-81c022fb4176",
  "name" : "updated-1290",
  "route53ZoneId" : "zoneId-1289",
  "domain" : "domain.io.",
  "validated" : false,
  "createdBy" : "4d1cb565-1dad-42af-ac86-18cea529b0fc",
  "createdAt" : "2024-04-09T16:14:50.757180Z",
  "updatedAt" : "2024-04-09T16:14:50.802054Z",
  "deletedAt" : null,
  "deletedBy" : null,
  "_links" : {
    "self" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/dns-zones/13b8c943-0b14-47e6-9ffa-a93a723b1701",
      "title" : "updated-1290"
    },
    "network-group" : {
      "href" : "https://gateway.production.netfoundry.io/core/v3/network-groups/0004a77d-9acd-4f91-a527-81c022fb4176",
      "profile" : "parent"
    }
  }
}

Validate Dns Zone

POST /v3/dns-zones/{id}/validate

Authorization

This endpoint requires update action on the dns-zone resource type.

Path parameters

Parameter Type Optional Description

id

Object

false

Query parameters

No parameters.

Request fields

No request body.

Response fields

Path Type Optional Description

content

Object

true

links

Array[Object]

true

links[].rel

String

true

links[].href

String

true

links[].hreflang

String

true

links[].media

String

true

links[].title

String

true

links[].type

String

true

links[].deprecation

String

true

links[].profile

String

true

links[].name

String

true

No links.

Embedded resources

No embedded resources.

Example request

$ curl 'https://gateway.production.netfoundry.io/core/v3/dns-zones/0041d6cb-c390-4748-9cc6-0e6396b3fcc8/validate' -i -X POST \
    -H 'Content-Type: application/hal+json' \
    -H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJac3c1cDlBWnJRc1pDbzIzYXQ5WjlBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJjYTczNTZjLTRiOWMtNDMxYy1iMmZlLTM3NmRlY2RhNWM3ZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcxMjY3OTI5MSwiZXhwIjoxNzEyNjgyODkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBiZjdjYzQyLTIwNzYtNGY4MS1hNmViLWVjYWQzMDUzZTBjZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcxMjY3OTI5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HX9oLTvMt1EuGjtvlfT-H6rvCNfTeiGWspAdf53UkQWlUJYlxL1e9YrLT2AWDodML2SUNrZ9kXL6zazUnF4DcG-XvjvLgwc5y3UCP7O-laX_w4k904zHVjwrOhlSnqWIG7CRkCuCs5xuQ1m3PtN5JBNpxabpopXCnI1QNFmxnXxAv6TxcoqFZxgoBg_Pnc8DZ3u9xBgQYZlp5x0aID5G2RBhWmPGHuXDhU2ZBapDZR9RWN5DeoqbWMOKiI3kKrbyJ68iWHrfSR26K10nI72yZLv1J6DRJwimEGGB7ya7rbApW0loNtnZ4m39PGnpLbdty8uibtm0C32h6EnuytMNuA'

Example response

HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 72

{
  "valid" : false,
  "failureMessage" : "No public txt record found"
}