PUT api/Pallets/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
PalletsBindingViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| CustomerId | integer |
None. |
|
| ShipperId | integer |
None. |
|
| ConsigneeId | integer |
None. |
|
| LocationId | integer |
None. |
|
| WarehouseId | integer |
None. |
|
| CheckCount | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"CustomerId": 1,
"ShipperId": 1,
"ConsigneeId": 1,
"LocationId": 1,
"WarehouseId": 1,
"CheckCount": true
}
application/xml, text/xml
Sample:
<PalletsBindingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMpowerCore.ViewModels.Pallets"> <CheckCount>true</CheckCount> <ConsigneeId>1</ConsigneeId> <CustomerId>1</CustomerId> <LocationId>1</LocationId> <Name>sample string 1</Name> <ShipperId>1</ShipperId> <WarehouseId>1</WarehouseId> </PalletsBindingViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.