Create Store-ins
This endpoint is deprecated.
POST
/api/RPC.common.Api.StoreIn.set?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
id | Integer | Store-in ID |
for_date | String | Store-out date |
num | String | Document # |
store_coderequired | String | Incoming warehouse ID |
description | String | Description |
rowsrequired | Object | Rows object. |
rows.skurequired | String | Item ID (SKU) |
rows.quantityrequired | String | Quantity |
rows.measure_code | String | Unit of measurement ID |
rows.location | String | Location code (sub-warehouse) |
rows.description | String | Description |
Request example
Create StoreIn:
{
"data" : [
{
"rows" : [
{
"quantity" : 5,
"sku" : 3456789
}
],
"store_code" : "0978"
}
]
}cURL
Create StoreIn:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "rows" : [ { "quantity" : 5, "sku" : 3456789 } ], "store_code" : "0978" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.StoreIn.set?token=<TOKEN>"Response example