Create Store-out

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

Key StoreOut.set · API version 2.0.0

Parameters

11 body parameters inside data[]
FieldTypeDescription
idIntegerStore-out ID
for_dateStringStore-out date
numStringDocument #
store_coderequiredStringOutbound warehouse ID
descriptionStringDescription
rowsrequiredObjectRows object.
rows.skurequiredStringItem SKU
rows.quantityrequiredStringQuantity
rows.measure_codeStringUnit of measurement ID
rows.locationStringLocation code (sub-warehouse)
rows.descriptionStringDescription

Request example

Create StoreOut:
{
   "data" : [
      {
         "rows" : [
            {
               "sku" : 10081,
               "quantity" : 3
            },
            {
               "quantity" : 2,
               "sku" : 10243
            },
            {
               "sku" : 10027,
               "quantity" : 1
            },
            {
               "sku" : 10071,
               "quantity" : 5
            },
            {
               "quantity" : 4,
               "sku" : 10040
            },
            {
               "quantity" : 2,
               "sku" : 10135
            }
         ],
         "store_code" : "8976HKJH"
      }
   ]
}

cURL

Create StoreOut:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "rows" : [            {               "sku" : 10081,               "quantity" : 3            },            {               "quantity" : 2,               "sku" : 10243            },            {               "sku" : 10027,               "quantity" : 1            },            {               "sku" : 10071,               "quantity" : 5            },            {               "quantity" : 4,               "sku" : 10040            },            {               "quantity" : 2,               "sku" : 10135            }         ],         "store_code" : "8976HKJH"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.StoreOut.set?token=<TOKEN>"

Response example