Get All Connectors

Get list of all supported connectors for calling platform

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": "string",

"response": {

"requestId": "string",

"connectors": [

{

"categories": [],

"id": "string",

"name": "string",

"dataType": "string",

"logo": "string",

“inUse” : boolean,

"docUrl": "string",

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

“isConfigured”: “boolean”

}

]

}

}

Error response

{

"code": 500,

"message": "string",

"response": null

}

Last updated