POST api/AMSMaster/SaveRectificationTransaction
Request Information
URI Parameters
None.
Body Parameters
clsSaveRectificationTransaction| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| AccountID | integer |
None. |
|
| InterestAmount | decimal number |
None. |
|
| PrincipalAmount | decimal number |
None. |
|
| BC_InterestAmount | decimal number |
None. |
|
| BC_PrincipalAmount | decimal number |
None. |
|
| MonthID | integer |
None. |
|
| YearID | integer |
None. |
|
| FinancialYear | string |
None. |
|
| Remark | string |
None. |
|
| RectificationType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"AccountID": 2,
"InterestAmount": 1.0,
"PrincipalAmount": 1.0,
"BC_InterestAmount": 1.0,
"BC_PrincipalAmount": 1.0,
"MonthID": 3,
"YearID": 4,
"FinancialYear": "sample string 5",
"Remark": "sample string 6",
"RectificationType": "sample string 7"
}
application/xml, text/xml
Sample:
<clsSaveRectificationTransaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MfgProj.BusinessObject"> <AccountID>2</AccountID> <BC_InterestAmount>1</BC_InterestAmount> <BC_PrincipalAmount>1</BC_PrincipalAmount> <FinancialYear>sample string 5</FinancialYear> <InterestAmount>1</InterestAmount> <MonthID>3</MonthID> <PrincipalAmount>1</PrincipalAmount> <RectificationType>sample string 7</RectificationType> <Remark>sample string 6</Remark> <UserID>1</UserID> <YearID>4</YearID> </clsSaveRectificationTransaction>
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. |