---
title: "Update north connector"
method: PUT
path: "/api/north/{northId}"
tags: ["North Connectors"]
---

# Update north connector

`PUT /api/north/{northId}`

Updates an existing north connector configuration

## Path parameters

- `northId` string, required

## Request body

- union — Command Data Transfer Object for creating or updating a North connector. Used as the request body for North connector creation/update endpoints.
  - NorthConnectorAmazonS3CommandDTO — North connector command for Amazon S3.
    - `name` string, required — The name of the North connector.
    - `type` 'aws-s3', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthAmazonS3Settings, required
      - `bucket` string, required
      - `region` string, required
      - `folder` string, required
      - `accessKey` string, required
      - `secretKey` string, nullable, required
      - `useProxy` boolean, required
      - `proxyUrl` string, nullable
      - `proxyUsername` string, nullable
      - `proxyPassword` string, nullable
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorAzureBlobCommandDTO — North connector command for Azure Blob Storage.
    - `name` string, required — The name of the North connector.
    - `type` 'azure-blob', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthAzureBlobSettings, required
      - `useADLS` boolean, required
      - `useCustomUrl` boolean, required
      - `account` string
      - `customUrl` string
      - `container` string, required
      - `path` string, required
      - `authentication` 'access-key' | 'sas-token' | 'aad' | 'external', required
      - `accessKey` string, nullable
      - `sasToken` string, nullable
      - `tenantId` string, nullable
      - `clientId` string, nullable
      - `clientSecret` string, nullable
      - `useProxy` boolean, required
      - `proxyUrl` string
      - `proxyUsername` string, nullable
      - `proxyPassword` string, nullable
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorConsoleCommandDTO — North connector command for the Console debug output.
    - `name` string, required — The name of the North connector.
    - `type` 'console', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthConsoleSettings, required
      - `verbose` boolean, required
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorFileWriterCommandDTO — North connector command for the File Writer.
    - `name` string, required — The name of the North connector.
    - `type` 'file-writer', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthFileWriterSettings, required
      - `outputFolder` string, required
      - `prefix` string, nullable, required
      - `suffix` string, nullable, required
      - `username` string, nullable
      - `password` string, nullable
      - `domain` string, nullable
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorModbusCommandDTO — North connector command for Modbus.
    - `name` string, required — The name of the North connector.
    - `type` 'modbus', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthModbusSettings, required
      - `host` string, required
      - `port` number, double, required
      - `connectTimeout` number, double, required
      - `retryInterval` number, double, required
      - `slaveId` number, double, required
      - `addressOffset` 'modbus' | 'jbus', required
      - `endianness` 'big-endian' | 'little-endian', required
      - `swapBytesInWords` boolean, required
      - `swapWordsInDWords` boolean, required
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorMQTTCommandDTO — North connector command for MQTT.
    - `name` string, required — The name of the North connector.
    - `type` 'mqtt', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthMQTTSettings, required
      - `url` string, required
      - `qos` '0' | '1' | '2', required
      - `persistent` boolean
      - `authentication` NorthMQTTSettingsAuthentication, required
        - `type` 'none' | 'basic' | 'cert', required
        - `username` string
        - `password` string, nullable
        - `certFilePath` string
        - `keyFilePath` string
        - `caFilePath` string
      - `rejectUnauthorized` boolean, required
      - `reconnectPeriod` number, double, required
      - `connectTimeout` number, double, required
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorOIAnalyticsCommandDTO — North connector command for OIAnalytics.
    - `name` string, required — The name of the North connector.
    - `type` 'oianalytics', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthOIAnalyticsSettings, required
      - `useOiaModule` boolean, required
      - `timeout` number, double, required
      - `compress` boolean, required
      - `specificSettings` NorthOIAnalyticsSettingsSpecificSettings
        - `host` string, required
        - `acceptUnauthorized` boolean, required
        - `authentication` 'basic' | 'aad-client-secret' | 'aad-certificate', required
        - `accessKey` string
        - `secretKey` string, nullable
        - `tenantId` string, nullable
        - `clientId` string
        - `clientSecret` string, nullable
        - `certificateId` string, nullable
        - `scope` string, nullable
        - `useProxy` boolean, required
        - `proxyUrl` string
        - `proxyUsername` string, nullable
        - `proxyPassword` string, nullable
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorOPCUACommandDTO — North connector command for OPC UA.
    - `name` string, required — The name of the North connector.
    - `type` 'opcua', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthOPCUASettings, required
      - `url` string, required
      - `keepSessionAlive` boolean, required
      - `retryInterval` number, double, required
      - `securityMode` 'none' | 'sign' | 'sign-and-encrypt', required
      - `securityPolicy` 'none' | 'basic128' | 'basic192' | 'basic256' | 'basic128-rsa15' | 'basic192-rsa15' | 'basic256-rsa15' | 'basic256-sha256' | 'aes128-sha256-rsa-oaep' | 'pub-sub-aes-128-ctr' | 'pub-sub-aes-256-ctr'
      - `authentication` NorthOPCUASettingsAuthentication, required
        - `type` 'none' | 'basic' | 'cert', required
        - `username` string
        - `password` string, nullable
        - `certFilePath` string
        - `keyFilePath` string
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorRESTCommandDTO — North connector command for the REST API.
    - `name` string, required — The name of the North connector.
    - `type` 'rest', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthRESTSettings, required
      - `host` string, required
      - `acceptUnauthorized` boolean, required
      - `method` 'POST' | 'PUT' | 'PATCH', required
      - `endpoint` string, required
      - `timeout` number, double, required
      - `sendAs` 'file' | 'body', required
      - `successCode` number, double, required
      - `authentication` NorthRESTSettingsAuthentication, required
        - `type` 'none' | 'basic' | 'bearer' | 'api-key', required
        - `username` string
        - `password` string, nullable
        - `token` string, nullable
        - `apiKey` string
        - `apiValue` string, nullable
        - `addTo` 'header' | 'query-params'
      - `proxy` NorthRESTSettingsProxy, required
        - `useProxy` boolean, required
        - `proxyUrl` string
        - `proxyUsername` string, nullable
        - `proxyPassword` string, nullable
      - `queryParams` NorthRESTSettingsQueryParams[], required
        - `key` string, required
        - `value` string, required
      - `headers` NorthRESTSettingsHeaders[], required
        - `key` string, required
        - `value` string, required
      - `test` NorthRESTSettingsTest, required
        - `testMethod` 'GET' | 'POST' | 'PUT', required
        - `testEndpoint` string, required
        - `body` string, nullable
        - `testSuccessCode` number, double, required
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T
  - NorthConnectorSFTPCommandDTO — North connector command for SFTP file transfer.
    - `name` string, required — The name of the North connector.
    - `type` 'sftp', required — The type of the North connector.
    - `description` string, required — The description of the North connector.
    - `enabled` boolean, required — Whether the North connector is enabled.
    - `settings` NorthSFTPSettings, required
      - `host` string, required
      - `port` number, double, required
      - `authentication` 'password' | 'private-key', required
      - `username` string, required
      - `password` string, nullable
      - `privateKey` string
      - `passphrase` string, nullable
      - `remoteFolder` string, required
      - `prefix` string, nullable, required
      - `suffix` string, nullable, required
    - `caching` object, required — The caching configuration for the North connector.
      - `archive` object, required — The archive configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain archived files.
        - `enabled` boolean, required — Whether archiving is enabled.
      - `error` object, required — The error handling configuration for caching.
        - `retentionDuration` number, double, required — The duration (in ms) to retain error files.
        - `retryCount` number, double, required — The maximum number of retry attempts.
        - `retryInterval` number, double, required — The interval (in ms) between retry attempts.
      - `throttling` object, required — The throttling configuration for caching.
        - `maxNumberOfElements` number, double, required — The maximum number of elements in the cache before sending.
        - `maxSize` number, double, required — The maximum size (in bytes) of the cache before sending.
        - `runMinDelay` number, double, required — The minimum delay (in ms) between runs.
      - `trigger` object, required — The trigger configuration for caching.
        - `numberOfFiles` number, double, required — The number of files to trigger a send.
        - `numberOfElements` number, double, required — The number of elements to trigger a send.
        - `scanModeName` string, nullable, required — The name of the scan mode. Used to select a scan mode when its ID is unavailable
        - `scanModeId` string, required — The ID of the scan mode.
    - `transformers` TransformerCommandDTOWithOptions[], required — The list of transformers to apply to the data.
      - `id` string, required — The id used to match a transformer with options
      - `source` union, required
        - SourceOriginSouthCommandDTO
          - `type` 'south', required
          - `southId` string, required — The south ID associated to the transformer
          - `groupId` string — The group ID associated to the transformer (mutually exclusive with items)
          - `items` object[], required — The list of items associated to the transformer
            - `enabled` boolean, required — Whether this item is enabled.
            - `name` string, required — The name of the item.
            - `id` string, required — The item ID
        - SourceOriginOIAnalyticsCommandDTO
          - `type` 'oianalytics-setpoint', required
        - SourceOriginAPICommandDTO
          - `type` 'oibus-api', required
          - `dataSourceId` string, required
      - `transformerId` string, required — The transformer to be applied.
      - `options` RecordStringUnknown, required — Construct a type with a set of properties K of type T

## Response `204`

No Content

---

[API](https://skmtc.net/optimistiksas/apis/oibus-api.md) · [All operations](https://skmtc.net/optimistiksas/apis/oibus-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/optimistiksas/oibus-api/revisions/fe8fd32c9fdc/schema)
