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": "7gRhi1swqEmdKwJFGY5uAA==",
"orderIdentifier": "8b6104ee-305b-49a8-9d2b-0245198e6e00",
"pluG_UID": "zM798nsHYk2jJHVWziKW1w==",
"pluGuid": "f2fdcecc-077b-4d62-a324-7556ce2296d7",
"image": "sample string 1",
"taken": "2026-06-03T18:36:04.7277742",
"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>7gRhi1swqEmdKwJFGY5uAA==</OrderGuid> <OrderIdentifier>8b6104ee-305b-49a8-9d2b-0245198e6e00</OrderIdentifier> <PLUG_UID>zM798nsHYk2jJHVWziKW1w==</PLUG_UID> <PluGuid>f2fdcecc-077b-4d62-a324-7556ce2296d7</PluGuid> <Taken>2026-06-03T18:36:04.7277742+00:00</Taken> </OrderDetailReceive>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.