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. Connector Management

Listing Connectors

To get a list of all the connectors supported by MadConnect, the platform can issue a GetAllConnectors call to the MadConnect backend. This API returns a list of all connectors along with metadata that can be used by the platform to render the connector in their own UI.

Sample Request/ Response

Path

/v1/partner/connector

Method

GET

Header

Content-Type: application/json

Authorization: Bearer access token

Query Params

name = “string”

category = “category”

size = "int" (Default:50. Keep size -1 for loading all)

offset = "int" (Default 0)

supported = "int" (Default: 1)

Success response

{

"code": 200,

"message": "Request executed successfully",

"response": {

"requestId": "27350aa2885d431fa7cc81b11cc2659b",

"connectors": [

{

"isConfigured": false,

"dataType": "audiences",

"name": "Meta Ads",

"inUse": true,

"docUrl": "https://docs.madconnect.io/supported-connectors/facebook-ads",

"logo": "/platforms/Meta.png",

"dataOrigin": "destination",

"id": "13a4e0ca00af0020"

},

{

"isConfigured": false,

"dataType": "Insights",

"name": "Meta Ads",

"inUse": true,

"docUrl": "https://docs.madconnect.io/supported-connectors/facebook-ads",

"logo": "/platforms/Meta.png",

"dataOrigin": "source",

"id": "9ab431cafeb4283d"

},...

]

}

}

PreviousConnector Management NextGetting Connector Info

Last updated 1 year ago