Inductive Automation config-gateway-network API

Gateway network configuration

Operations 31

POST /data/api/v1/resources/delete/ignition/gateway-network-incoming Delete Incoming Connection Settings (multiple) #
POST /data/api/v1/resources/delete/ignition/gateway-network-outgoing Delete Outgoing Connection Settings (multiple) #
GET /data/api/v1/resources/find/ignition/gateway-network-incoming/{name} Get Incoming Connection Settings Config #
GET /data/api/v1/resources/find/ignition/gateway-network-outgoing/{name} Get Outgoing Connection Settings Config #
PUT /data/api/v1/resources/ignition/gateway-network-incoming Modify Incoming Connection Settings #
DELETE /data/api/v1/resources/ignition/gateway-network-incoming/{name}/{signature} Delete Incoming Connection Settings #
PUT /data/api/v1/resources/ignition/gateway-network-outgoing Modify Outgoing Connection Settings #
POST /data/api/v1/resources/ignition/gateway-network-outgoing Create Outgoing Connection Settings #
DELETE /data/api/v1/resources/ignition/gateway-network-outgoing/{name}/{signature} Delete Outgoing Connection Settings #
PUT /data/api/v1/resources/ignition/gateway-network-proxy-rules Modify Proxy Rules #
POST /data/api/v1/resources/ignition/gateway-network-proxy-rules Create Proxy Rules #
DELETE /data/api/v1/resources/ignition/gateway-network-proxy-rules/{signature} Delete Proxy Rules #
PUT /data/api/v1/resources/ignition/gateway-network-queue-settings Modify Queue Settings #
POST /data/api/v1/resources/ignition/gateway-network-queue-settings Create Queue Settings #
DELETE /data/api/v1/resources/ignition/gateway-network-queue-settings/{signature} Delete Queue Settings #
PUT /data/api/v1/resources/ignition/gateway-network-settings Modify General Gateway Network Settings #
POST /data/api/v1/resources/ignition/gateway-network-settings Create General Gateway Network Settings #
DELETE /data/api/v1/resources/ignition/gateway-network-settings/{signature} Delete General Gateway Network Settings #
GET /data/api/v1/resources/list/ignition/gateway-network-incoming List Incoming Connection Settings Resources #
GET /data/api/v1/resources/list/ignition/gateway-network-outgoing List Outgoing Connection Settings Resources #
GET /data/api/v1/resources/names/ignition/gateway-network-incoming Get Incoming Connection Settings Names #
GET /data/api/v1/resources/names/ignition/gateway-network-outgoing Get Outgoing Connection Settings Names #
POST /data/api/v1/resources/rename/ignition/gateway-network-outgoing/{name} Rename Outgoing Connection Settings #
GET /data/api/v1/resources/singleton/ignition/gateway-network-proxy-rules Get Proxy Rules Config #
GET /data/api/v1/resources/singleton/ignition/gateway-network-queue-settings Get Queue Settings Config #
GET /data/api/v1/resources/singleton/ignition/gateway-network-settings Get General Gateway Network Settings Config #
GET /data/api/v1/resources/type/ignition/gateway-network-incoming Describe 'Incoming Connection Settings' Resource Type #
GET /data/api/v1/resources/type/ignition/gateway-network-outgoing Describe 'Outgoing Connection Settings' Resource Type #
GET /data/api/v1/resources/type/ignition/gateway-network-proxy-rules Describe 'Proxy Rules' Resource Type #
GET /data/api/v1/resources/type/ignition/gateway-network-queue-settings Describe 'Queue Settings' Resource Type #
GET /data/api/v1/resources/type/ignition/gateway-network-settings Describe 'General Gateway Network Settings' Resource Type #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/inductive-automation-config-gateway-network-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

inductive-automation-config-gateway-network-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ignition Gateway REST access-control Config Gateway Network API
  description: The Ignition Gateway REST API (Ignition 8.3+) provides an OpenAPI-compliant HTTP interface to Gateway configuration resources including tags, projects, modules, device connections, historian data, user management (SCIM), alarm notification, OPC connections, and more. The specification is dynamically generated based on installed modules. Authentication uses API keys exchanged for time-limited tokens via the X-Ignition-API-Token header. Mutative requests are audit-logged. Supports Kubernetes and Helm-based cloud-native deployments.
  version: 8.3.0
  contact:
    name: Inductive Automation Support
    url: https://support.inductiveautomation.com/
  license:
    name: Commercial
    url: https://inductiveautomation.com/pricing/
  x-postman-collection: https://raw.githubusercontent.com/inductiveautomation/83-api/main/postman/8.3.postman_collection_v2.json
servers:
- url: http://{gateway-host}:{port}
  description: Ignition Gateway (HTTP)
  variables:
    gateway-host:
      default: localhost
      description: Hostname or IP address of the Ignition Gateway
    port:
      default: '8088'
      description: Gateway HTTP port (default 8088; HTTPS default 8043)
- url: https://{gateway-host}:{port}
  description: Ignition Gateway (HTTPS)
  variables:
    gateway-host:
      default: localhost
      description: Hostname or IP address of the Ignition Gateway
    port:
      default: '8043'
      description: Gateway HTTPS port
security:
- apiKeyAuth: []
tags:
- name: config-gateway-network
  description: Gateway network configuration
paths:
  /data/api/v1/resources/delete/ignition/gateway-network-incoming:
    post:
      summary: Delete Incoming Connection Settings (multiple)
      operationId: delete-incoming-connection-settings-(multiple)-post
      tags:
      - config-gateway-network
      description: Delete multiple Incoming Connection Settings resources by name
      parameters:
      - name: confirm
        in: query
        required: false
        schema:
          type: string
        description: Whether to confirm the deletion, required when the operation would affect other resources.
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - name: <string>
              signature: <string>
              collection: <string>
            - name: <string>
              signature: <string>
              collection: <string>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/delete/ignition/gateway-network-outgoing:
    post:
      summary: Delete Outgoing Connection Settings (multiple)
      operationId: delete-outgoing-connection-settings-(multiple)-post
      tags:
      - config-gateway-network
      description: Delete multiple Outgoing Connection Settings resources by name
      parameters:
      - name: confirm
        in: query
        required: false
        schema:
          type: string
        description: Whether to confirm the deletion, required when the operation would affect other resources.
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - name: <string>
              signature: <string>
              collection: <string>
            - name: <string>
              signature: <string>
              collection: <string>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/find/ignition/gateway-network-incoming/{name}:
    get:
      summary: Get Incoming Connection Settings Config
      operationId: get-incoming-connection-settings-config-get
      tags:
      - config-gateway-network
      description: Retrieve configuration details about a specific Incoming Connection Settings resource
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to read the resource from
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/find/ignition/gateway-network-outgoing/{name}:
    get:
      summary: Get Outgoing Connection Settings Config
      operationId: get-outgoing-connection-settings-config-get
      tags:
      - config-gateway-network
      description: Retrieve configuration details about a specific Outgoing Connection Settings resource
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to read the resource from
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-incoming:
    put:
      summary: Modify Incoming Connection Settings
      operationId: modify-incoming-connection-settings-put
      tags:
      - config-gateway-network
      description: Modify one or more Incoming Connection Settings resources
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - name: <string>
              signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                connectionId: <string>
                securityStatus: <string>
              backupConfig:
                connectionId: <string>
                securityStatus: <string>
            - name: <string>
              signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                connectionId: <string>
                securityStatus: <string>
              backupConfig:
                connectionId: <string>
                securityStatus: <string>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-incoming/{name}/{signature}:
    delete:
      summary: Delete Incoming Connection Settings
      operationId: delete-incoming-connection-settings-delete
      tags:
      - config-gateway-network
      description: Delete a Incoming Connection Settings resource by name
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: signature
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to delete the resource from
      - name: confirm
        in: query
        required: false
        schema:
          type: string
        description: Whether to confirm the deletion, required when the operation would affect other resources.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-outgoing:
    put:
      summary: Modify Outgoing Connection Settings
      operationId: modify-outgoing-connection-settings-put
      tags:
      - config-gateway-network
      description: Modify one or more Outgoing Connection Settings resources
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - name: <string>
              signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
              backupConfig:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
            - name: <string>
              signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
              backupConfig:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
    post:
      summary: Create Outgoing Connection Settings
      operationId: create-outgoing-connection-settings-post
      tags:
      - config-gateway-network
      description: Create a new Outgoing Connection Settings resource
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - name: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
              backupConfig:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
            - name: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
              backupConfig:
                host: <string>
                port: <number>
                useSSL: <boolean>
                pingRateMillis: <number>
                pingTimeoutMillis: <number>
                pingMaxMissed: <number>
                wsTimeoutMillis: <number>
                httpConnectTimeoutMillis: <number>
                httpReadTimeoutMillis: <number>
                sendThreads: <number>
                receiveThreads: <number>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-outgoing/{name}/{signature}:
    delete:
      summary: Delete Outgoing Connection Settings
      operationId: delete-outgoing-connection-settings-delete
      tags:
      - config-gateway-network
      description: Delete a Outgoing Connection Settings resource by name
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: signature
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to delete the resource from
      - name: confirm
        in: query
        required: false
        schema:
          type: string
        description: Whether to confirm the deletion, required when the operation would affect other resources.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-proxy-rules:
    put:
      summary: Modify Proxy Rules
      operationId: modify-proxy-rules-put
      tags:
      - config-gateway-network
      description: Modify one or more Proxy Rules resources
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
              backupConfig:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
              backupConfig:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
    post:
      summary: Create Proxy Rules
      operationId: create-proxy-rules-post
      tags:
      - config-gateway-network
      description: Create the Proxy Rules resource
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
              backupConfig:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
              backupConfig:
                proxyRules:
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
                - sourceGateways: <string>
                  destinationGateways: <string>
                  action: <string>
                  description: <string>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-proxy-rules/{signature}:
    delete:
      summary: Delete Proxy Rules
      operationId: delete-proxy-rules-delete
      tags:
      - config-gateway-network
      description: Delete the Proxy Rules resource.
      parameters:
      - name: signature
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to delete the resource from
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-queue-settings:
    put:
      summary: Modify Queue Settings
      operationId: modify-queue-settings-put
      tags:
      - config-gateway-network
      description: Modify one or more Queue Settings resources
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
              backupConfig:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
              backupConfig:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
    post:
      summary: Create Queue Settings
      operationId: create-queue-settings-post
      tags:
      - config-gateway-network
      description: Create the Queue Settings resource
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
              backupConfig:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
              backupConfig:
                queueSettings:
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
                - queueId: <string>
                  maxActive: <integer>
                  timeoutMillis: <number>
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-queue-settings/{signature}:
    delete:
      summary: Delete Queue Settings
      operationId: delete-queue-settings-delete
      tags:
      - config-gateway-network
      description: Delete the Queue Settings resource.
      parameters:
      - name: signature
        in: path
        required: true
        schema:
          type: string
      - name: collection
        in: query
        required: false
        schema:
          type: string
        description: The configuration collection to delete the resource from
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
  /data/api/v1/resources/ignition/gateway-network-settings:
    put:
      summary: Modify General Gateway Network Settings
      operationId: modify-general-gateway-network-settings-put
      tags:
      - config-gateway-network
      description: Modify one or more General Gateway Network Settings resources
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
              backupConfig:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
            - signature: <string>
              collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
              backupConfig:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
    post:
      summary: Create General Gateway Network Settings
      operationId: create-general-gateway-network-settings-post
      tags:
      - config-gateway-network
      description: Create the General Gateway Network Settings resource
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
              backupConfig:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyInterceptServiceCalls: false
                allowJavaSerialization: false
            - collection: <string>
              enabled: <boolean>
              description: <string>
              config:
                requireSSL: true
                requireTwoWayAuth: true
                receiveQueueMax: 100
                overloadWaitSecs: 60
                allowIncoming: true
                securityPolicy: ApprovedOnly
                whitelist: ''
                allowedProxyHops: 0
                websocketSessionIdleTimeout: 30000
                tempFilesMaxAgeHours: 24
                incomingPingRateMillis: 5000
                incomingPingTimeoutMillis: 300
                incomingPingMaxMissed: 12
                proxyIntercept

# --- truncated at 32 KB (49 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/inductive-automation/refs/heads/main/openapi/inductive-automation-config-gateway-network-api-openapi.yml