---
title: "Get all datasets"
method: GET
path: "/api/Dataset"
tags: ["Dataset Management"]
---

# Get all datasets

`GET /api/Dataset`

Returns all of the datasets that the user has access to.  Each dataset contains a set of minimal info, for more detailed information on a given dataset use the /api/dataset/{datasetId} endpoint.

## Path parameters

- `filterSynthesized` boolean, required

## Response `200`

Returns all accessible datasets

- MinimalDatasetResponseModel[]
  - `id` string
  - `name` string
  - `fileSource` 'Local' | 'Sharepoint' | 'Aws' | 'Sdk' | 'Azure' | 'OneLake' — The original upload location of source files (Local, S3, Azure, SharePoint, OneLake, or SDK).
  - `operations` DatasetOperation[]
  - `tags` string[]
  - `lastUpdated` Instant — A point in time represented as an ISO 8601 timestamp string.
  - `created` Instant — A point in time represented as an ISO 8601 timestamp string.
  - `creatorUser` UserEntityModel — A user entity with basic identity information.
    - `id` string, required — The unique identifier of the user or group.
    - `userName` string, nullable, required — The display name of the user or group.
    - `firstName` string, nullable — The user's first name.
    - `lastName` string, nullable — The user's last name.
  - `fileCount` integer
  - `formMappingName` string, nullable
  - `formMappingStatus` 'Current' | 'Stale' | 'SourceDeleted' — Lifecycle of a dataset's applied form mapping relative to its org-level source, computed at read time by joining Dataset.FormMappingSourceId to the live FormMapping. The clone is self-contained, so a Stale or SourceDeleted mapping keeps working — these states are informational badges only.<p>Possible values:</p> <ul> <li><b>Current</b>: The source mapping still exists and has not changed since the clone was taken.</li> <li><b>Stale</b>: The source mapping was edited after the clone was taken (source.Version > SourceVersion).</li> <li><b>SourceDeleted</b>: The source mapping was deleted; the dataset continues to run off its clone.</li> </ul>
  - `formMappingNoticeDismissed` boolean

---

[API](https://skmtc.net/tonic/apis/textual-api.md) · [All operations](https://skmtc.net/tonic/apis/textual-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tonic/textual-api/revisions/41da8739a690/schema)
