Getting list of Connections

If the embedding platform wishes to query all the connections created through the embedded platform, it can be done by calling the Get Connections API as shown in example below.

Path

/v1/partner/connection

Method

GET

Header

Content-Type: application/json

Authorization: Bearer access token

Query Params

size = "20"

offset = "0"

Success response

{

"code": 200,

"message": "string",

"response": {

"requestId": "string"

“connections”: [

{

“id” : “9a1458ba6e977a5f”,

“sourceId” : “7464aa2af710c4e5345se”,

“destinationId” : “4f9ff5fd24449b983fsd”,

"createdDate": 1710247702

},

]

}

}

Last updated