POST api/CentralPicker/ApproveDepoShipment

Request Information

URI Parameters

None.

Body Parameters

ApproveDepoShipmentMod
NameDescriptionTypeAdditional information
businessId

integer

None.

loginUserId

integer

None.

shipmentID

string

None.

items

Collection of PickListPickupUDT

None.

Request Formats

application/json, text/json

Sample:
{
  "businessId": 1,
  "loginUserId": 2,
  "shipmentID": "sample string 3",
  "items": [
    {
      "ProductID": 1,
      "ExpectedQuantity": 1,
      "PickUpQuantity": 1,
      "DamagedGoods": 1,
      "MissingGoods": 1
    },
    {
      "ProductID": 1,
      "ExpectedQuantity": 1,
      "PickUpQuantity": 1,
      "DamagedGoods": 1,
      "MissingGoods": 1
    }
  ]
}

application/xml, text/xml

Sample:
<ApproveDepoShipmentMod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <businessId>1</businessId>
  <loginUserId>2</loginUserId>
  <shipmentID>sample string 3</shipmentID>
  <items>
    <PickListPickupUDT>
      <ProductID>1</ProductID>
      <ExpectedQuantity>1</ExpectedQuantity>
      <PickUpQuantity>1</PickUpQuantity>
      <DamagedGoods>1</DamagedGoods>
      <MissingGoods>1</MissingGoods>
    </PickListPickupUDT>
    <PickListPickupUDT>
      <ProductID>1</ProductID>
      <ExpectedQuantity>1</ExpectedQuantity>
      <PickUpQuantity>1</PickUpQuantity>
      <DamagedGoods>1</DamagedGoods>
      <MissingGoods>1</MissingGoods>
    </PickListPickupUDT>
  </items>
</ApproveDepoShipmentMod>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2025/04/28 14:19:31",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <StatusCode>1</StatusCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
</VCAPIResponse>