PUT api/eeb/inventory/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
InventoryUpdateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| date | date |
None. |
|
| qty | decimal number |
None. |
|
| remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"date": "2025-12-11T02:28:58.2742989+08:00",
"qty": 1.0,
"remarks": "sample string 1"
}
application/xml, text/xml
Sample:
<InventoryUpdateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EEB_API.Models.DTO"> <date>2025-12-11T02:28:58.2742989+08:00</date> <qty>1</qty> <remarks>sample string 1</remarks> </InventoryUpdateDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.