Getting Connector Info
To fetch detailed information about a certain connector, the GetConnectorInfo API can be called by passing the connector_id as a parameter. The API returns connector metadata such as name, logo, if the connector is in use, along with the source/destination configurations.
Sample Request/Response
Path
/v1/partner/connector/db69f718d3244495
Method
GET
Header
Content-Type: application/json
Authorization: Bearer access token
Query Params
NONE
Success response
{
"code": 200,
"message": "Request executed successfully",
"response": {
"requestId": "9e03d755323e422596182d7dd0426401",
"connector": {
"isConfigured": false,
"sourceConfig": [
{
"listValue": null,
"readonly": false,
"name": "Client Directory",
"description": "",
"id": "clientDir",
"label": "Client Directory",
"type": "text",
"list": null,
"required": true
}
],
"dataType": "audiences",
"name": "Lotame",
"inUse": true,
"docUrl": "https://docs.madconnect.io/supported-connectors/lotame",
"logo": "https://madconnect.io/platforms/Lotame.png",
"dataOrigin": "both",
"destinationConfig": [
{
"listValue": null,
"readonly": false,
"name": "Client Directory",
"description": "",
"id": "clientDir",
"label": "Client Directory",
"type": "text",
"list": null,
"required": true
}
]
}
}
}
Last updated