POST API/Stock/RemoveStockIncoming
Request Information
URI Parameters
None.
Body Parameters
StockIncomingM| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Stock_ID | globally unique identifier |
None. |
|
| Price | decimal number |
None. |
|
| Quantity | decimal number |
None. |
|
| CreateDate | date |
None. |
|
| UpdatePerson_ID | globally unique identifier |
None. |
|
| Invoice_Details_ID | globally unique identifier |
None. |
|
| UnitOfMeasurement | integer |
None. |
|
| InventoryNumber | integer |
None. |
|
| Sum | decimal number |
None. |
|
| Stock | StockM |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "f18833d4-3b3c-4cf6-8453-9edb62efec03",
"Stock_ID": "04e00cce-0825-4d67-8cc3-ff4658533053",
"Price": 3.0,
"Quantity": 4.0,
"CreateDate": "2026-05-17T04:12:06.2042175+05:00",
"UpdatePerson_ID": "b43153ac-28b0-4ec8-9f34-f86ea2501815",
"Invoice_Details_ID": "f5fa12df-fd10-40fb-9139-8bff4015b8ee",
"UnitOfMeasurement": 1,
"InventoryNumber": 1,
"Sum": 8.0,
"Stock": {
"ID": "ee908fe2-4e1b-48bd-aa75-02fe6a76e72e",
"Code": 2,
"Name": "sample string 3",
"CreateDate": "2026-05-17T04:12:06.2042175+05:00"
}
}
application/xml, text/xml
Sample:
<StockIncomingM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CarPark.Models.Basic">
<CreateDate>2026-05-17T04:12:06.2042175+05:00</CreateDate>
<ID>f18833d4-3b3c-4cf6-8453-9edb62efec03</ID>
<InventoryNumber>1</InventoryNumber>
<Invoice_Details_ID>f5fa12df-fd10-40fb-9139-8bff4015b8ee</Invoice_Details_ID>
<Price>3</Price>
<Quantity>4</Quantity>
<Stock>
<Code>2</Code>
<CreateDate>2026-05-17T04:12:06.2042175+05:00</CreateDate>
<ID>ee908fe2-4e1b-48bd-aa75-02fe6a76e72e</ID>
<Name>sample string 3</Name>
</Stock>
<Stock_ID>04e00cce-0825-4d67-8cc3-ff4658533053</Stock_ID>
<Sum>8</Sum>
<UnitOfMeasurement>1</UnitOfMeasurement>
<UpdatePerson_ID>b43153ac-28b0-4ec8-9f34-f86ea2501815</UpdatePerson_ID>
</StockIncomingM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>