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