Dataset - Fetch list of all available datasets

Retrieves a list of all available datasets.

get
Authorizations
Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Responses
200
Success: Successfully retrieved the list of available datasets.
get
GET /datasets HTTP/1.1
Host: admin-embedfastdev-app.azurewebsites.net
Authorization: Bearer JWT
Accept: */*
{
  "tenantId": "123e4567-e89b-12d3-a456-426614174000",
  "assetId": "123e4567-e89b-12d3-a456-426614174000",
  "assetType": "text",
  "assetName": "text",
  "embedUrl": "text",
  "webUrl": "text",
  "datasetId": "text",
  "bindedDatasetId": "text",
  "reportType": "text",
  "reportPages": [
    {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  ],
  "isEffectiveIdentityRolesRequired": "text",
  "isEffectiveIdentityRequired": "text",
  "canView": true,
  "canCreate": true,
  "canEdit": true,
  "canExport": true,
  "createdOn": "2025-07-22T20:36:48.443Z",
  "modifiedOn": "2025-07-22T20:36:48.443Z",
  "createdBy": "123e4567-e89b-12d3-a456-426614174000",
  "modifiedBy": "123e4567-e89b-12d3-a456-426614174000",
  "reportParameter": [
    "text"
  ]
}

Retrieves a comprehensive list of all available assets in the system.

get
Authorizations
Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Responses
200
Success: Successfully retrieved the existing assets-related details.
get
GET /assets HTTP/1.1
Host: admin-embedfastdev-app.azurewebsites.net
Authorization: Bearer JWT
Accept: */*
{
  "reports": [
    {
      "tenantId": "123e4567-e89b-12d3-a456-426614174000",
      "assetId": "123e4567-e89b-12d3-a456-426614174000",
      "assetType": "text",
      "assetName": "text",
      "embedUrl": "text",
      "webUrl": "text",
      "datasetId": "text",
      "bindedDatasetId": "text",
      "reportType": "text",
      "reportPages": [
        {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      ],
      "isEffectiveIdentityRolesRequired": "text",
      "isEffectiveIdentityRequired": "text",
      "canView": true,
      "canCreate": true,
      "canEdit": true,
      "canExport": true,
      "createdOn": "2025-07-22T20:36:48.443Z",
      "modifiedOn": "2025-07-22T20:36:48.443Z",
      "createdBy": "123e4567-e89b-12d3-a456-426614174000",
      "modifiedBy": "123e4567-e89b-12d3-a456-426614174000",
      "reportParameter": [
        "text"
      ]
    }
  ],
  "dashboards": [
    {
      "tenantId": "123e4567-e89b-12d3-a456-426614174000",
      "assetId": "123e4567-e89b-12d3-a456-426614174000",
      "assetType": "text",
      "assetName": "text",
      "embedUrl": "text",
      "webUrl": "text",
      "datasetId": "text",
      "bindedDatasetId": "text",
      "reportType": "text",
      "reportPages": [
        {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      ],
      "isEffectiveIdentityRolesRequired": "text",
      "isEffectiveIdentityRequired": "text",
      "canView": true,
      "canCreate": true,
      "canEdit": true,
      "canExport": true,
      "createdOn": "2025-07-22T20:36:48.443Z",
      "modifiedOn": "2025-07-22T20:36:48.443Z",
      "createdBy": "123e4567-e89b-12d3-a456-426614174000",
      "modifiedBy": "123e4567-e89b-12d3-a456-426614174000",
      "reportParameter": [
        "text"
      ]
    }
  ],
  "datasets": [
    {
      "tenantId": "123e4567-e89b-12d3-a456-426614174000",
      "assetId": "123e4567-e89b-12d3-a456-426614174000",
      "assetType": "text",
      "assetName": "text",
      "embedUrl": "text",
      "webUrl": "text",
      "datasetId": "text",
      "bindedDatasetId": "text",
      "reportType": "text",
      "reportPages": [
        {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      ],
      "isEffectiveIdentityRolesRequired": "text",
      "isEffectiveIdentityRequired": "text",
      "canView": true,
      "canCreate": true,
      "canEdit": true,
      "canExport": true,
      "createdOn": "2025-07-22T20:36:48.443Z",
      "modifiedOn": "2025-07-22T20:36:48.443Z",
      "createdBy": "123e4567-e89b-12d3-a456-426614174000",
      "modifiedBy": "123e4567-e89b-12d3-a456-426614174000",
      "reportParameter": [
        "text"
      ]
    }
  ]
}

Last updated