Skip to main content
GET
/
api
/
datasource
/
v1
/
datasources
Get all active Data Source the user has access to
curl --request GET \
  --url https://api.example.com/api/datasource/v1/datasources \
  --header 'X-Domino-Api-Key: <api-key>'
{
  "dataSources": [
    {
      "authType": "AzureBasic",
      "config": {},
      "dataSourceType": "ADLSConfig",
      "displayName": "Azure Data Lake Store",
      "id": "62604702b7e5d347dbe7a909",
      "lastUpdated": "2022-04-23T18:25:43.511Z",
      "name": "data-source-name",
      "ownerId": "62604702b7e5d347dbe7a909",
      "ownerUsername": "owner-username",
      "permissions": {
        "isEveryone": true,
        "userAndOrganizationIds": [
          "<string>"
        ]
      },
      "description": "My Data Source"
    }
  ],
  "metadata": {
    "notices": [
      "<string>"
    ],
    "requestId": "<string>",
    "limit": 123,
    "offset": 123,
    "totalCount": 123
  }
}

Authorizations

X-Domino-Api-Key
string
header
required

Query Parameters

dataSourceNames
string[]

Names of the Data Sources to get

offset
integer
default:0

How many Data Sources from the start to skip, sorted by descending ID order. Defaults to 0

limit
integer
default:10

Maximum number of Data Sources to fetch. Defaults to 10

Response

Success

dataSources
object[]
required
metadata
object
required