Create Store-outs

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

Key So.createStoreOut · API version 2.0.0

Parameters

3 body parameters inside data[]
FieldTypeDescription
numrequiredStringSales Order ID
store_codeStringOutbound warehouse ID
descriptionStringDescription

Request example

Create StoreOut From So:
{
   "data" : [
      {
         "description" : "Create StoreOut From So CO10003341",
         "num" : "CO10003341"
      }
   ]
}
Create StoreOut From So With Store:
{
   "data" : [
      {
         "store_code" : "8976HKJH",
         "num" : "CO10003341",
         "description" : "Create StoreOut From So CO10003341"
      }
   ]
}

cURL

Create StoreOut From So:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "description" : "Create StoreOut From So CO10003341",         "num" : "CO10003341"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.So.createStoreOut?token=<TOKEN>"
Create StoreOut From So With Store:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "store_code" : "8976HKJH",         "num" : "CO10003341",         "description" : "Create StoreOut From So CO10003341"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.So.createStoreOut?token=<TOKEN>"

Response example