POST api/Warehouse/SendAvailableQuantity
Documentation for 'SendAvailableQuantity'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| request | Documentation for 'request'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"ClientID": "sample string 1",
"Password": "sample string 2",
"NO_PESANAN": "sample string 3",
"STATUS": "sample string 4",
"Products": [
{
"$id": "2",
"KODE_PLU": "sample string 1",
"QTY": 2,
"KETERANGAN": "sample string 3"
},
{
"$ref": "2"
},
{
"$ref": "2"
}
]
}
application/xml, text/xml
Sample:
<AvailableQuantity xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ClientID>sample string 1</ClientID>
<Password>sample string 2</Password>
<NO_PESANAN>sample string 3</NO_PESANAN>
<STATUS>sample string 4</STATUS>
<Products>
<AvailableQuantityDetail>
<KODE_PLU>sample string 1</KODE_PLU>
<QTY>2</QTY>
<KETERANGAN>sample string 3</KETERANGAN>
</AvailableQuantityDetail>
<AvailableQuantityDetail>
<KODE_PLU>sample string 1</KODE_PLU>
<QTY>2</QTY>
<KETERANGAN>sample string 3</KETERANGAN>
</AvailableQuantityDetail>
<AvailableQuantityDetail>
<KODE_PLU>sample string 1</KODE_PLU>
<QTY>2</QTY>
<KETERANGAN>sample string 3</KETERANGAN>
</AvailableQuantityDetail>
</Products>
</AvailableQuantity>