POST api/Purchasing/ReceivePO
Request Information
URI Parameters
None.
Body Parameters
Collection of PostReceivePOName | Description | Type | Additional information |
---|---|---|---|
POID | integer |
None. |
|
ItemID | integer |
None. |
|
LocationID | integer |
None. |
|
ShipmentID | string |
None. |
|
Qty | decimal number |
None. |
|
Note | string |
None. |
Request Formats
application/json, text/json
Sample:
[ { "POID": 1, "ItemID": 2, "LocationID": 3, "ShipmentID": "sample string 4", "Qty": 5.1, "Note": "sample string 6" }, { "POID": 1, "ItemID": 2, "LocationID": 3, "ShipmentID": "sample string 4", "Qty": 5.1, "Note": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfPostReceivePO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api"> <PostReceivePO> <ItemID>2</ItemID> <LocationID>3</LocationID> <Note>sample string 6</Note> <POID>1</POID> <Qty>5.1</Qty> <ShipmentID>sample string 4</ShipmentID> </PostReceivePO> <PostReceivePO> <ItemID>2</ItemID> <LocationID>3</LocationID> <Note>sample string 6</Note> <POID>1</POID> <Qty>5.1</Qty> <ShipmentID>sample string 4</ShipmentID> </PostReceivePO> </ArrayOfPostReceivePO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>