Create Store-outs
This endpoint is deprecated.
POST
/api/RPC.common.Api.So.createStoreOut?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
numrequired | String | Sales Order ID |
store_code | String | Outbound warehouse ID |
description | String | Description |
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