To create a new ASN or incoming delivery into the warehouse you'll need to use the /api/ASN - PUT method
https://api.mintsoft.co.uk/swagger/ui/index#!/ASN/ASN_CreateASN
The ASN will contain details about a delivery coming into the warehouse and the products contained on that delivery
Field | Comments | Example | Required |
WarehouseId | WarehouseId of the warehouse the ASN is coming into. Full list can be found using the /api/Warehouse call. | "WarehouseId": 3 | Yes |
POReference | PO Reference to make the ASN eaiser to identify | "POReference": "PO1232" | Yes |
Supplier | The new of the Supplier | "Supplier": "MySupplier" | Yes |
EstimatedDelivery | Date you expect the delivery into the warehouse | "EstimatedDelivery":"2020-04-13T14:08:00.3259797+01:00" | Yes |
Comments | Any extra details the warehous need to know | "Comments":"Test Delivery" | Yes |
GoodsInType | The type of Delivery e.g. Pallet, Carton, Container - Full list can be found using the /api/ASN/GoodsInTypes | "GoodsInType":"Pallet" | Yes |
Quantity | The quantity of shipping items e.g. 2 pallets | "Quantity":2 | Yes |
ProductSupplierId | Not Required - Only If you want to supply the SupplierId by ID instead of just plain text | Optional | |
ClientId | Not Required - Only if you are using an Admin API user to ASNs on behalf of multiple clients | Optional | |
Items | Breakdown of the items coming in the delivery. Either ProductId or SKU can be supplied. | "Items":[ {"ProductId":0,"SKU":"test-sku","Quantity":100} ]} |
Required |
Full example:
{
"WarehouseId":3,
"POReference":"My PO Reference",
"Supplier":"New Supplier",
"EstimatedDelivery":"2020-04-13T14:08:00.3259797+01:00",
"Comments":"Test Delivery",
"GoodsInType":"Pallet",
"Quantity":2,
"ProductSupplierId":null,
"ClientId":null,
"Items":[
{"ProductId":0,"SKU":"test-sku","Quantity":100}
]}
Comments
0 comments
Article is closed for comments.