DELETE api/EstimateItem/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
EstimateItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| EstID | globally unique identifier |
None. |
|
| Section | integer |
None. |
|
| Item | integer |
None. |
|
| Subitem | integer |
None. |
|
| Description | string |
None. |
|
| Qty | decimal number |
None. |
|
| Rate | decimal number |
None. |
|
| Amount | decimal number |
None. |
|
| line | integer |
None. |
|
| gcodeno | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "41fc967e-fa3b-4e5d-8160-5bd5979e430d",
"EstID": "61131d84-09a1-4d96-9152-d67709b59e6a",
"Section": 1,
"Item": 1,
"Subitem": 1,
"Description": "sample string 2",
"Qty": 1.1,
"Rate": 1.0,
"Amount": 1.0,
"line": 1,
"gcodeno": 1
}
application/xml, text/xml
Sample:
<EstimateItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models"> <Amount>1</Amount> <Description>sample string 2</Description> <EstID>61131d84-09a1-4d96-9152-d67709b59e6a</EstID> <ID>41fc967e-fa3b-4e5d-8160-5bd5979e430d</ID> <Item>1</Item> <Qty>1.1</Qty> <Rate>1</Rate> <Section>1</Section> <Subitem>1</Subitem> <gcodeno>1</gcodeno> <line>1</line> </EstimateItem>