Skip to content

Commit 6a70b4c

Browse files
authored
Update export-files.md
1 parent e5500de commit 6a70b4c

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

articles/healthcare-apis/dicom/export-files.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ The request body consists of the export source and destination.
9292

9393
#### Source settings
9494

95-
The only setting is the list of identifiers to export.
95+
Source settings is an optional field. If Source settings is provided, only the identifiers listed here are exported. If the source setting is not provided, it will export all the instances that is stored in the DICOM to the destination blob. Export all feature is not supported for DICOM service with Azure Data Lake Storage enabled.
9696

9797
| Property | Required | Default | Description |
9898
| -------- | -------- | ------- | ----------- |
99-
| `Values` | Yes | | A list of one or more DICOM studies, series, and/or SOP instance identifiers in the format of `"<StudyInstanceUID>[/<SeriesInstanceUID>[/<SOPInstanceUID>]]"` |
99+
| `Values` | No | | A list of one or more DICOM studies, series, and/or SOP instance identifiers in the format of `"<StudyInstanceUID>[/<SeriesInstanceUID>[/<SOPInstanceUID>]]"` |
100100

101101
#### Destination settings
102102

@@ -139,7 +139,22 @@ Content-Type: application/json
139139
}
140140
}
141141
```
142+
The following example requests the export everything to the blob container named `export` in the storage account named `dicomexport`:
142143

144+
```http
145+
POST /export HTTP/1.1
146+
Accept: */*
147+
Content-Type: application/json
148+
{
149+
"destination": {
150+
"type": "azureblob",
151+
"settings": {
152+
"blobContainerUri": "https://dicomexport.blob.core.windows.net/export",
153+
"UseManagedIdentity": true
154+
}
155+
}
156+
}
157+
```
143158
#### Response
144159

145160
The export API returns a `202` status code when an export operation is started successfully. The body of the response contains a reference to the operation. The value of the `Location` header is the URL for the export operation's status (the same as `href` in the body).

0 commit comments

Comments
 (0)