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"
},...
]
}
}
Last updated