Create Store-ins
This endpoint is deprecated.
POST
/api/RPC.common.Api.Po.createStoreIn?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
numrequired | String | Document # |
store_coderequired | String | Outbound warehouse ID |
description | String | Description |
Request example
Create StoreIn From Po:
{
"data" : [
{
"num" : "PO10000189",
"description" : "Create StoreIn From Po PO10000189"
}
]
}
Create StoreIn From Po With Store Code:
{
"data" : [
{
"description" : "Create StoreIn From Po PO10000189",
"store_code" : 134,
"num" : "PO10000189"
}
]
}cURL
Create StoreIn From Po:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "num" : "PO10000189", "description" : "Create StoreIn From Po PO10000189" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Po.createStoreIn?token=<TOKEN>"
Create StoreIn From Po With Store Code:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "description" : "Create StoreIn From Po PO10000189", "store_code" : 134, "num" : "PO10000189" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Po.createStoreIn?token=<TOKEN>"Response example