Create Stock Transfer

This endpoint is deprecated.
POST/api/RPC.common.Api.Move.set?token=<TOKEN>

Key Move.set · API version 2.0.0

Parameters

15 body parameters inside data[]
FieldTypeDescription
numStringNumber of transfer
from_store_coderequiredStringOutbound warehouse ID
create_store_outBooleanCreate Store-out
to_store_coderequiredStringIncoming warehouse ID
create_store_inBooleanCreate Store-in
descriptionStringDescription
internal_descriptionStringComment
rowsrequiredObjectRows object.
rows.skurequiredStringItem ID (SKU)
rows.labelStringBatch
rows.quantityrequiredStringQuantity
rows.measure_codeStringUnit of measurement ID
rows.from_substore_codeStringCode of sub-warehouse FROM
rows.to_substore_codeStringCode of sub-warehouse TO
rows.descriptionStringDescription

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>"

Response example