POST api/ARDelNote/PostDeliveryFromSalesOrder

Request Information

URI Parameters

None.

Body Parameters

ARCNModel
NameDescriptionTypeAdditional information
sales_orderDocEntry

integer

None.

DocDate

string

None.

DocDueDate

string

None.

Items

Collection of ARCNItem

None.

Request Formats

application/json, text/json

Sample:
{
  "sales_orderDocEntry": 1,
  "DocDate": "sample string 2",
  "DocDueDate": "sample string 3",
  "Items": [
    {
      "ItemCode": "sample string 1",
      "Quantity": 2.1,
      "BinLocations": [
        {
          "BinCode": "sample string 1",
          "Quantity": 2.1
        },
        {
          "BinCode": "sample string 1",
          "Quantity": 2.1
        }
      ]
    },
    {
      "ItemCode": "sample string 1",
      "Quantity": 2.1,
      "BinLocations": [
        {
          "BinCode": "sample string 1",
          "Quantity": 2.1
        },
        {
          "BinCode": "sample string 1",
          "Quantity": 2.1
        }
      ]
    }
  ]
}

application/xml, text/xml

Sample:
<ARDelNoteController.ARCNModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PTS_API.Controllers">
  <DocDate>sample string 2</DocDate>
  <DocDueDate>sample string 3</DocDueDate>
  <Items>
    <ARDelNoteController.ARCNItem>
      <BinLocations>
        <ARDelNoteController.ARCNBin>
          <BinCode>sample string 1</BinCode>
          <Quantity>2.1</Quantity>
        </ARDelNoteController.ARCNBin>
        <ARDelNoteController.ARCNBin>
          <BinCode>sample string 1</BinCode>
          <Quantity>2.1</Quantity>
        </ARDelNoteController.ARCNBin>
      </BinLocations>
      <ItemCode>sample string 1</ItemCode>
      <Quantity>2.1</Quantity>
    </ARDelNoteController.ARCNItem>
    <ARDelNoteController.ARCNItem>
      <BinLocations>
        <ARDelNoteController.ARCNBin>
          <BinCode>sample string 1</BinCode>
          <Quantity>2.1</Quantity>
        </ARDelNoteController.ARCNBin>
        <ARDelNoteController.ARCNBin>
          <BinCode>sample string 1</BinCode>
          <Quantity>2.1</Quantity>
        </ARDelNoteController.ARCNBin>
      </BinLocations>
      <ItemCode>sample string 1</ItemCode>
      <Quantity>2.1</Quantity>
    </ARDelNoteController.ARCNItem>
  </Items>
  <sales_orderDocEntry>1</sales_orderDocEntry>
</ARDelNoteController.ARCNModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.