POST api/order/{id}/detail/{pluGuid}/receive
Post an image for an order detail
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Order identifier |
globally unique identifier |
Required |
| pluGuid |
Product identifier |
globally unique identifier |
Required |
Body Parameters
Order receive detail image to save
OrderDetailReceive| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| OrderGuid | Collection of byte |
None. |
|
| OrderIdentifier | globally unique identifier |
None. |
|
| PLUG_UID | Collection of byte |
None. |
|
| PluGuid | globally unique identifier |
None. |
|
| Image | string |
None. |
|
| Taken | date |
None. |
|
| Extension | string |
Relation. This field may not always be loaded or used for updates. |
|
| ImageEncodedString | string |
Relation. This field may not always be loaded or used for updates. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"orderGuid": "PDNljFE0Wk6nL1KcF7WGRQ==",
"orderIdentifier": "8c65333c-3451-4e5a-a72f-529c17b58645",
"pluG_UID": "VRRGVANbokCQOk7Tgz9U/w==",
"pluGuid": "54461455-5b03-40a2-903a-4ed3833f54ff",
"image": "sample string 1",
"taken": "2026-04-03T06:22:27.4741073",
"extension": "sample string 2",
"imageEncodedString": "sample string 3"
}
application/xml, text/xml
Sample:
<OrderDetailReceive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Orders"> <Extension>sample string 2</Extension> <ID>1</ID> <Image>sample string 1</Image> <ImageEncodedString>sample string 3</ImageEncodedString> <OrderGuid>PDNljFE0Wk6nL1KcF7WGRQ==</OrderGuid> <OrderIdentifier>8c65333c-3451-4e5a-a72f-529c17b58645</OrderIdentifier> <PLUG_UID>VRRGVANbokCQOk7Tgz9U/w==</PLUG_UID> <PluGuid>54461455-5b03-40a2-903a-4ed3833f54ff</PluGuid> <Taken>2026-04-03T06:22:27.4741073+00:00</Taken> </OrderDetailReceive>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.