GET v1/store/login/user/orders/unsubmitted/items/{orderItemID}/preview/{previewID}
Gets preview status.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderItemID |
order product ID |
globally unique identifier |
Required |
| previewID |
preview ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns DTO about preview.
GetPreviewResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PreviewID |
Preview ID. |
globally unique identifier |
None. |
| Status |
Production status. |
ActivityStatus |
None. |
| Format |
Preview format. |
OutputFormat |
None. |
| Items |
Collection of the preview files. |
Collection of PreviewOutputItemModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"PreviewID": "2cb81052-2431-4060-892f-3f4a3df1a6fc",
"Status": 1,
"Format": 0,
"Items": [
{
"Url": "sample string 1",
"Title": "sample string 2"
},
{
"Url": "sample string 1",
"Title": "sample string 2"
}
]
}