PUT api/ItemMasterShorts/PutItemMasterShort/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
ItemMasterShort| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemId | integer |
None. |
|
| ItemCode | string |
None. |
|
| ItemName | string |
None. |
|
| Material | string |
None. |
|
| GSTRate | decimal number |
None. |
|
| PurchaseCost | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ItemId": 1,
"ItemCode": "sample string 2",
"ItemName": "sample string 3",
"Material": "sample string 4",
"GSTRate": 1.0,
"PurchaseCost": 1.0
}
application/xml, text/xml
Sample:
<ItemMasterShort xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ItemMasterDemoAPI"> <GSTRate>1</GSTRate> <ItemCode>sample string 2</ItemCode> <ItemId>1</ItemId> <ItemName>sample string 3</ItemName> <Material>sample string 4</Material> <PurchaseCost>1</PurchaseCost> </ItemMasterShort>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.