POST api/SalesOrder/GetGSTCNDNTaxAmount
Request Information
URI Parameters
None.
Body Parameters
Collection of GSTCNDNItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemCode | string |
None. |
|
| TotalAmount | decimal number |
None. |
|
| Ataxcode | string |
None. |
|
| linenumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ItemCode": "sample string 1",
"TotalAmount": 2.0,
"Ataxcode": "sample string 3",
"linenumber": 4
},
{
"ItemCode": "sample string 1",
"TotalAmount": 2.0,
"Ataxcode": "sample string 3",
"linenumber": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfGSTCNDNItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RREL.Data.Models">
<GSTCNDNItem>
<Ataxcode>sample string 3</Ataxcode>
<ItemCode>sample string 1</ItemCode>
<TotalAmount>2</TotalAmount>
<linenumber>4</linenumber>
</GSTCNDNItem>
<GSTCNDNItem>
<Ataxcode>sample string 3</Ataxcode>
<ItemCode>sample string 1</ItemCode>
<TotalAmount>2</TotalAmount>
<linenumber>4</linenumber>
</GSTCNDNItem>
</ArrayOfGSTCNDNItem>
application/x-www-form-urlencoded
Sample:
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. |