PUT api/VendorPO?SessionID={SessionID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionID | string |
Required |
Body Parameters
POAddObject| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorID | string |
None. |
|
| WarehouseID | string |
None. |
|
| PODate | date |
None. |
|
| PONumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VendorID": "sample string 1",
"WarehouseID": "sample string 2",
"PODate": "2025-12-09T18:50:55.3079207-08:00",
"PONumber": "sample string 4"
}
application/xml, text/xml
Sample:
<VendorPOController.POAddObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAPI"> <PODate>2025-12-09T18:50:55.3079207-08:00</PODate> <PONumber>sample string 4</PONumber> <VendorID>sample string 1</VendorID> <WarehouseID>sample string 2</WarehouseID> </VendorPOController.POAddObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PONewReturnObj| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnCode | integer |
None. |
|
| ReturnMessage | string |
None. |
|
| VendorPOID | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnCode": 1,
"ReturnMessage": "sample string 2",
"VendorPOID": "sample string 3"
}
application/xml, text/xml
Sample:
<VendorPOController.PONewReturnObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAPI"> <ReturnCode>1</ReturnCode> <ReturnMessage>sample string 2</ReturnMessage> <VendorPOID>sample string 3</VendorPOID> </VendorPOController.PONewReturnObj>