GET api/negotiation/get-current-stock/{negotiationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| negotiationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GetCurrenQuantityDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CancelQuantity | decimal number |
None. |
|
| Quantity | decimal number |
None. |
|
| Message | string |
None. |
|
| RemovedQuantity | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"CancelQuantity": 1.0,
"Quantity": 2.0,
"Message": "sample string 3",
"RemovedQuantity": 4.0
}
application/xml, text/xml
Sample:
<GetCurrenQuantityDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.StockEntries"> <CancelQuantity>1</CancelQuantity> <Message>sample string 3</Message> <Quantity>2</Quantity> <RemovedQuantity>4</RemovedQuantity> </GetCurrenQuantityDTO>