POST v1/store/login/user/orders/unsubmitted/items/{orderItemID}/preview
Creates preview for the dynamic product by order product ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderItemID |
order product ID |
globally unique identifier |
Required |
Body Parameters
dial values for the preview
CreatePreviewRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Properties |
Customization values |
Collection of OrderItemPropertyModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Properties": [
{
"ID": "sample string 1",
"Value": {}
},
{
"ID": "sample string 1",
"Value": {}
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns DTO with created preview details.
CreatePreviewResponseModel| 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 OutputItemModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"PreviewID": "07e07918-54b6-42ea-9012-735c7f87814d",
"Status": 1,
"Format": 0,
"Items": [
{
"Url": "sample string 1",
"Title": "sample string 2"
},
{
"Url": "sample string 1",
"Title": "sample string 2"
}
]
}