> ## Documentation Index
> Fetch the complete documentation index at: https://docs.indexing.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Enable Networks

> Enable Pipeline Networks



## OpenAPI

````yaml POST /pipelines/{name}/networks
openapi: 3.1.0
info:
  title: The Neighborhood - OpenAPI
  description: Schema for testing, deploying, and managing distributed pipelines
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.indexing.co/dw
security:
  - ApiKeyAuth: []
paths:
  /pipelines/{name}/networks:
    post:
      description: Enable more networks for a pipeline
      requestBody:
        description: Networks to add
        content:
          application/json:
            schema:
              type: object
              properties:
                networks:
                  type: array
                  items:
                    type: string
        required: true
      responses:
        '200':
          description: A pipeline
          content:
            application/json:
              schema:
                required:
                  - name
                  - transformation
                  - filter
                  - filterKeys
                  - networks
                  - delivery
                type: object
                properties:
                  name:
                    type: string
                  transformation:
                    type: string
                  filter:
                    type: string
                  filterKeys:
                    type: array
                    items:
                      type: string
                  networks:
                    type: array
                    items:
                      type: string
                  enabled:
                    type: boolean
                  delivery:
                    type: object
                    properties:
                      adapter:
                        type: string
                      connection:
                        type: string
                      connectionUri:
                        type: string
                      table:
                        type: string
                      uniqueKeys:
                        type: array
                        items:
                          type: string
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                required:
                  - error
                type: object
                properties:
                  error:
                    type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````