Actions
| Action | Description |
|---|---|
list | List all datasets in the organization |
create | Create a new dataset |
get | Get a dataset by ID |
update | Update a dataset |
delete | Delete a dataset |
Parameters
list
No parameters.
create
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | Name of the dataset |
description | string | no | Description of the dataset |
type | string | no | Dataset type: FHIR or Files |
data | unknown | no | Dataset contents (FHIR bundle, file references, etc.) |
config | object | no | Dataset configuration |
get
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |
update
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |
name | string | no | Updated name |
description | string | null | no | Updated description, or null to clear |
data | unknown | no | Updated dataset contents |
config | object | null | no | Updated config, or null to clear |
delete
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |