MadConnect Embedded Documentation
  • Getting Started
    • MadConnect Architecture
  • Implementation Guide
    • Integrating MadConnect Into Your Platform
    • Connector Management
      • Listing Connectors
      • Getting Connector Info
      • Configuring Connectors
      • Fetching Connector Configuration
      • Updating Connector Configuration
    • Connection Management
      • Setting up Connections
      • Getting list of Connections
      • Fetching Connection Details
      • Disabling/Enabling a Connection
      • Deleting a Connection
  • Embedded API Reference
    • Authorization APIs
      • Authorization URI
      • Get Token (By code)
      • Get Token (By refresh-token)
    • Connector Information APIs
      • Get All Connectors
      • Get connector information
    • Connector Configuration APIs
      • Get a Platform config (Connector Config)
      • Setup Connector
    • Connection APIs
      • Get All Connections
      • Create Connection
      • Fetch Connection
      • Delete Connection
      • Enable/Disable Connection
    • Status Codes
Powered by GitBook
On this page
  1. Implementation Guide
  2. Connection Management

Setting up Connections

Once the connectors are configured, setting up connections between the two platforms is a simple process. In the case of the embedded solution, the platform embedding the MadConnect API is expected to be either the source or destination. To create a connection, simply call the create connection API with the connector IDs as shown in example below.

Path

/v1/partner/connection

Method

POST

Header

Content-Type: application/json

Authorization: Bearer access token

Query Params

NONE

Body

{

“sourceId” : “7464aa2af710c4e5345se”,

“destinationId”: “4f9ff5fd24449b983fsd”

}

PreviousConnection ManagementNextGetting list of Connections

Last updated 1 year ago