POST api/{siteCode}/Warehouse/CreateWarehouseCheckin
Creates the warehouse checkin.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteCode |
The site code. |
integer |
Required |
Body Parameters
The inbound advice.
WarehouseIn| Name | Description | Type | Additional information |
|---|---|---|---|
| Supplier |
The goods supplier. |
string |
String length: inclusive between 0 and 50 |
| ReceivedDate |
Expected date of receipt. |
date |
None. |
| CheckInItems |
Items expected. |
Collection of WarehouseItem |
None. |
| BranchID |
The branch identifier. |
string |
Required String length: inclusive between 1 and 3 |
| CustomerID |
The customer account identifier. |
string |
Required String length: inclusive between 1 and 8 |
| NOP |
Number of outer packages. |
integer |
None. |
| Weight |
Gross weight. |
decimal number |
None. |
| Cube |
The cube. |
decimal number |
None. |
| CustRef |
The customer reference. |
string |
String length: inclusive between 0 and 255 |
| Remarks |
Comments. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Supplier": "BoxTop Technologies Ltd",
"ReceivedDate": "2025-10-28T00:00:00+00:00",
"CheckInItems": [
{
"Warehouse": null,
"SKUGroupID": null,
"SKUNumber": "ABC123D",
"SKUName": "SKU Description",
"Quantity": 1000,
"Add1": "Colour",
"Add2": "Size",
"Add3": "Batch",
"Add4": null,
"Add5": null,
"Add6": null,
"Comments": "No comment"
},
{
"Warehouse": null,
"SKUGroupID": null,
"SKUNumber": "D321CBA",
"SKUName": "SKU Description",
"Quantity": 1000,
"Add1": "Colour",
"Add2": "Size",
"Add3": null,
"Add4": null,
"Add5": null,
"Add6": null,
"Comments": "No comment"
}
],
"BranchID": "H",
"CustomerID": "UKCust",
"NOP": 10,
"Weight": 100.0,
"Cube": 1.123,
"CustRef": "POrd 12345",
"Remarks": "Notify confirmed receipt details asap!"
}
application/xml, text/xml
Sample:
<WarehouseIn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<BranchID>H</BranchID>
<CustomerID>UKCust</CustomerID>
<NOP>10</NOP>
<Weight>100</Weight>
<Cube>1.123</Cube>
<CustRef>POrd 12345</CustRef>
<Remarks>Notify confirmed receipt details asap!</Remarks>
<Supplier>BoxTop Technologies Ltd</Supplier>
<ReceivedDate>2025-10-28T00:00:00+00:00</ReceivedDate>
<CheckInItems>
<WarehouseItem>
<SKUGroupID xsi:nil="true" />
<SKUNumber>ABC123D</SKUNumber>
<SKUName>SKU Description</SKUName>
<Quantity>1000</Quantity>
<Add1>Colour</Add1>
<Add2>Size</Add2>
<Add3>Batch</Add3>
<Comments>No comment</Comments>
</WarehouseItem>
<WarehouseItem>
<SKUGroupID xsi:nil="true" />
<SKUNumber>D321CBA</SKUNumber>
<SKUName>SKU Description</SKUName>
<Quantity>1000</Quantity>
<Add1>Colour</Add1>
<Add2>Size</Add2>
<Comments>No comment</Comments>
</WarehouseItem>
</CheckInItems>
</WarehouseIn>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |