Get a list of child board connections

GET /io/card/:cardId/connection

Get a list of child board connections. This is the unique set of child boards related to the parent card.

Example Request

1curl -X GET \
3  -H 'Authorization: Basic base64encodedauthhere' \
4  -H 'Content-Type: application/json'

Example Successful Response

200 OK

01{
02    "connections": [
03        {
04            "cardId": "943206946",
05            "boardId": "943929912",
06            "boardTitle": "Child board",
07            "isFollowable": true,
08            "isRemovable": true,
09            "isArchived": false
10        },
11        {
12            "cardId": "943206946",
13            "boardId": "943188457",
14            "boardTitle": "Example board",
15            "isFollowable": true,
16            "isRemovable": true,
17            "isArchived": false
18        }
19    ]
20}