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. Embedded API Reference
  2. Connector Information APIs

Get connector information

Get details of a particular connector by providing the connector id.

Path

/v1/partner/connector/<string_id>

Method

GET

Header

Content-Type: application/json

Authorization: Bearer access token

Query Params

NONE

Success response

{

"code": 200,

"message": "string",

"response": {

"requestId": "string",

"connector": {

"name": "string",

"dataType": "string",

"logo": "string",

“inUse” : boolean,

"docUrl": "string",

“dataOrigin” : “string”, // source or destination or both

“isConfigured”: “boolean”

"sourceConfig": {

// “api-key”: “string”,

// “bucket-name”: “string”

},

"destinationConfig": {

// “api-key”: “string”,

// “bucket-name”: “string”

}

}

}

Error response

{

"code": 500,

"message": "string",

"response": null

}

PreviousGet All ConnectorsNextConnector Configuration APIs

Last updated 1 year ago