Uploading the Dicoms
BASE URL will be the API service hostname and each request to the Qure.ai app is expected to carry a bearer TOKEN. Qure will provide both of these.
Use the following sample script to upload Dicoms to the service.
Uploading Dicoms to the Service
POST
http://BASE URL + studies
Use the URL to make a POST call with the multipart encoded payload.
Path Parameters
Name | Type | Description |
---|---|---|
file_paths* | String | Represents the file location. |
URL* | String | The URL pointing to the service. |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer token. |
Content-Type* | String |
Request Body
Name | Type | Description |
---|---|---|
data* | String |
For large data, it is recommended to perform batch uploads. Please ensure that the payload size of each request does not exceed 100 MB.
Response Attribute
Attribute | Value type | Description | Sample Value |
---|---|---|---|
String | It validates the post call action based on the response status code. | ||
Integer | It is a unique identifier given for a series of Dicom images. | ||
String | It is an object which contains a set of Dicom images. | - | |
Integer | It is the number of series instance UID's that belong to a set of series. | ||
Boolean | It validates the token validity. |
Last updated