Skip to content

Destination Adapters

Introduction

Destination adapters in DataBridge are responsible for pushing processed data to:

  • External systems (e.g. application APIs)
  • Data files (delivered to the Results folder

Destination adapters are the final stage of a data pipeline. Errors that occur when communicating with external systems are delivered back though the Results File

Multiple destination adapters can be configured within the same Configuration File, e.g. data can be delivered to a destination system and delivered to the results folder (for example for debugging purposes).

Available Adapters

Common Configuration Pattern

Field documentation

All destination adapters follow a consistent configuration pattern:

adapter

The name of the destination adapter to use.

datasets

An array. The names of the Data Frames that are made available to the connector.

secrets

An array. Names of the secret aliases that are made available to the adapter.

configuration

Object containing adapter-specific configuration parameters, documented within each adapter.

Example configuration

json
{
  "version": 1,
  "destination_adapters": [
    {
      "adapter": "adapter_name",
      "configuration": {
        // Adapter-specific configuration
      }
    }
  ]
}