Create Stock Transfer
POST
/api/RPC.common.Api.Move.set?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
num | String | Number of transfer |
from_store_coderequired | String | Outbound warehouse ID |
create_store_out | Boolean | Create Store-out |
to_store_coderequired | String | Incoming warehouse ID |
create_store_in | Boolean | Create Store-in |
description | String | Description |
internal_description | String | Comment |
rowsrequired | Object | Rows object. |
rows.skurequired | String | Item ID (SKU) |
rows.label | String | Batch |
rows.quantityrequired | String | Quantity |
rows.measure_code | String | Unit of measurement ID |
rows.from_substore_code | String | Code of sub-warehouse FROM |
rows.to_substore_code | String | Code of sub-warehouse TO |
rows.description | String | Description |
Request example
Create Move:
{
"data" : [
{
"create_store_out" : 1,
"create_store_in" : 1,
"from_store_code" : "Vek01",
"to_store_code" : "018"
}
]
}cURL
Create Move:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "create_store_out" : 1, "create_store_in" : 1, "from_store_code" : "Vek01", "to_store_code" : "018" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Move.set?token=<TOKEN>"