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

Fetching Connection Details

To fetch details about a particular connection, the Fetch Connector Info API can be used. This API takes the connection ID as a parameter and returns metadata specific to the connector ID requested.

Path

/v1/partner/connection/9a1458ba6e977a5f

Method

GET

Header

Content-Type: application/json

Authorization: Bearer access token

Query Params

NONE

Success response

{

"code": 200,

"message": "string",

"response": {

"requestId": "4f7a04d144b4415db310202aa0e6f6e4",

“connection”: {

“id” : “9a1458ba6e977a5f”,

“sourceId” : “7464aa2af710c4e5345se”,

“destinationId” : “4f9ff5fd24449b983fsd”,

"createdDate": 1710247702

}

}

}

PreviousGetting list of ConnectionsNextDisabling/Enabling a Connection

Last updated 1 year ago