POST v1/store/login/user/orders/unsubmitted/items/{orderItemID}/proof
Creates proof 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
None.
Response Information
Resource Description
Returns DTO with created proof details.
CreateProofResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProofID |
Proof ID. |
globally unique identifier |
None. |
| Status |
Production status. |
ActivityStatus |
None. |
| Format |
Proof format. |
OutputFormat |
None. |
| Items |
Collection of the proof files. |
Collection of ProofOutputItemModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProofID": "fcece299-b4c0-4233-875b-c433fd4d7a93",
"Status": 1,
"Format": 0,
"Items": [
{
"Url": "sample string 1",
"Title": "sample string 2"
},
{
"Url": "sample string 1",
"Title": "sample string 2"
}
]
}