DELETE api/NTCoGenInfo/DeleteTaxLossItem?uniqueClientID={uniqueClientID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uniqueClientID | integer |
Required |
Body Parameters
EYCTCWebNTCoSchGenInfoTaxLossItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ItemID | integer |
None. |
|
| IsYearEnd | boolean |
None. |
|
| TaxLossDate | string |
None. |
|
| Amount | decimal number |
None. |
|
| Amounts | Collection of decimal number |
None. |
|
| DoubleDeductAmount | decimal number |
None. |
|
| DoubleDeductAmounts | Collection of decimal number |
None. |
|
| IsStatusAgreed | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ItemID": 2,
"IsYearEnd": true,
"TaxLossDate": "sample string 4",
"Amount": 3.0,
"Amounts": [
1.0,
2.0
],
"DoubleDeductAmount": 3.0,
"DoubleDeductAmounts": [
1.0,
2.0
],
"IsStatusAgreed": true
}
application/xml, text/xml
Sample:
<EYCTCWebNTCoSchGenInfoTaxLossItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EYCAPL.CTS.Web">
<Amounts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:decimal>1</d2p1:decimal>
<d2p1:decimal>2</d2p1:decimal>
</Amounts>
<DoubleDeductAmounts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:decimal>1</d2p1:decimal>
<d2p1:decimal>2</d2p1:decimal>
</DoubleDeductAmounts>
<ID>1</ID>
<IsStatusAgreed>true</IsStatusAgreed>
<IsYearEnd>true</IsYearEnd>
<ItemID>2</ItemID>
<TaxLossDate>sample string 4</TaxLossDate>
</EYCTCWebNTCoSchGenInfoTaxLossItem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |