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
}
Last updated