GET
https://{BaseURL}
/
api
/
public
/
connections
curl --request GET \
  --url https://{BaseURL}/api/public/connections \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<connection id>",
      "name": "<connection name>",
      "description": "<connection descripion>",
      "connector": {
        "id": "<connector id>",
        "name": "<connector name>",
        "descripion": "<connector descripion>"
      },
      "databaseId": "<database id>",
      "user": {
        "id": "<user id>",
        "name": "<user name>",
        "email": "<user email>"
      },
      "folder": {
        "id": "<folder id>",
        "name": "<folder name>"
      }
    }
  ]
}

Extract all your connections as JSON.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

The response is of type object.