Dataset Management
Listing Datasets
The Dataset listing endpoint returns all published Datasets in a Project. If a Draft Form defines a new Dataset, that Dataset will not be included in this list until the Form is published.
The query ?deleted=true can be added to list deleted Datasets with their numeric IDs, which can be used to download a deleted Dataset's Entity data.
get/v1/projects/{projectId}/datasets
Path parameters
projectIdnumber required
The numeric ID of the Project
Query parameters
deletedboolean
If set to true, will return only deleted Datasets and their numeric IDs
Response
OK
Example response
[
{
"name": "people",
"createdAt": "2018-01-19T23:58:03.395Z",
"projectId": 1,
"approvalRequired": true,
"accessFilter": {
"type": "property",
"rules": [
{
"datasetProperty": "state",
"actorProperty": "region"
}
]
}
}
]