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": "a4d14d85-c65a-421f-8c8f-e9d47ba72365",
"Stock_ID": "7224dd0f-ff22-45d6-a66b-bcee369db6e3",
"Price": 3.0,
"Quantity": 4.0,
"CreateDate": "2026-01-17T05:35:43.7661087+05:00",
"UpdatePerson_ID": "e0b6ca48-18c9-4147-993f-25e516ad4c3f",
"Invoice_Details_ID": "077fb135-9eda-4964-a237-6379422a4d5d",
"UnitOfMeasurement": 1,
"InventoryNumber": 1,
"Sum": 8.0,
"Stock": {
"ID": "a211c976-f485-4ec5-b89d-8f47711601db",
"Code": 2,
"Name": "sample string 3",
"CreateDate": "2026-01-17T05:35:43.7661087+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-01-17T05:35:43.7661087+05:00</CreateDate>
<ID>a4d14d85-c65a-421f-8c8f-e9d47ba72365</ID>
<InventoryNumber>1</InventoryNumber>
<Invoice_Details_ID>077fb135-9eda-4964-a237-6379422a4d5d</Invoice_Details_ID>
<Price>3</Price>
<Quantity>4</Quantity>
<Stock>
<Code>2</Code>
<CreateDate>2026-01-17T05:35:43.7661087+05:00</CreateDate>
<ID>a211c976-f485-4ec5-b89d-8f47711601db</ID>
<Name>sample string 3</Name>
</Stock>
<Stock_ID>7224dd0f-ff22-45d6-a66b-bcee369db6e3</Stock_ID>
<Sum>8</Sum>
<UnitOfMeasurement>1</UnitOfMeasurement>
<UpdatePerson_ID>e0b6ca48-18c9-4147-993f-25e516ad4c3f</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>