POST api/Dispatch/SaveSetDispatchQty
Request Information
URI Parameters
None.
Body Parameters
DispatchDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityKey | string |
None. |
|
| DispatchId | integer |
None. |
|
| DispatchDetailId | integer |
None. |
|
| ProposedDispatchId | integer |
None. |
|
| OrderDetailId | integer |
None. |
|
| UserId | integer |
None. |
|
| DispatchDate | date |
None. |
|
| Qunatity | integer |
None. |
|
| ProductName | string |
None. |
|
| Status | OrderStatus |
None. |
|
| ProductDispactStatus | OrderStatus |
None. |
Request Formats
application/json, text/json
Sample:
{
"SecurityKey": "sample string 1",
"DispatchId": 2,
"DispatchDetailId": 3,
"ProposedDispatchId": 4,
"OrderDetailId": 5,
"UserId": 6,
"DispatchDate": "2025-12-11T10:28:28.4152707-08:00",
"Qunatity": 8,
"ProductName": "sample string 9",
"Status": 1,
"ProductDispactStatus": 1
}
text/html
Sample:
{"SecurityKey":"sample string 1","DispatchId":2,"DispatchDetailId":3,"ProposedDispatchId":4,"OrderDetailId":5,"UserId":6,"DispatchDate":"2025-12-11T10:28:28.4152707-08:00","Qunatity":8,"ProductName":"sample string 9","Status":1,"ProductDispactStatus":1}
application/xml, text/xml
Sample:
<DispatchDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model"> <DispatchDate>2025-12-11T10:28:28.4152707-08:00</DispatchDate> <DispatchDetailId>3</DispatchDetailId> <DispatchId>2</DispatchId> <OrderDetailId>5</OrderDetailId> <ProductDispactStatus>New</ProductDispactStatus> <ProductName>sample string 9</ProductName> <ProposedDispatchId>4</ProposedDispatchId> <Qunatity>8</Qunatity> <SecurityKey>sample string 1</SecurityKey> <Status>New</Status> <UserId>6</UserId> </DispatchDetail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>