Create deliveries

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

Key Po.createDelivery · API version 2.0.0

Parameters

3 body parameters inside data[]
FieldTypeDescription
numrequiredStringDocument #
store_coderequiredStringOutbound warehouse ID
descriptionStringDescription

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