POST api/posting/addadjustmentitem
Add adjustment to ledger entry Processes this posting API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The add adjustment item data contract supplied with the request.
AddAdjustmentItemDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| LedgerId |
The unique identifier of the related ledger resource. |
integer |
None. |
| Amount |
The amount value. |
decimal number |
None. |
| Description |
The description value. |
string |
None. |
| FromManualReconciliation |
Indicates whether from manual reconciliation is true. |
boolean |
None. |
| Type |
The type classification. |
AdjustmentItemType |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"LedgerId": 1,
"Amount": 2.0,
"Description": "sample string 3",
"FromManualReconciliation": true,
"Type": 0
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.