GET api/Adjustment/GetAdjustmentByAccountIDAndAmountAndAdjustmentDate?accountID={accountID}&adjustmentAmount={adjustmentAmount}&date={date}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
|
| adjustmentAmount | decimal number |
Required |
|
| date | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AdjustmentByAccountIDAndAmountAndAdjustmentDate| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Adjustment_Type | string |
None. |
|
| AdjustmentDescription | string |
None. |
|
| Adjustment_Amount | decimal number |
None. |
|
| AdjustmentDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Adjustment_Type": "sample string 2",
"AdjustmentDescription": "sample string 3",
"Adjustment_Amount": 1.0,
"AdjustmentDate": "2026-01-15T08:44:51.4983596+00:00"
},
{
"ID": 1,
"Adjustment_Type": "sample string 2",
"AdjustmentDescription": "sample string 3",
"Adjustment_Amount": 1.0,
"AdjustmentDate": "2026-01-15T08:44:51.4983596+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfAdjustmentByAccountIDAndAmountAndAdjustmentDate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Adjustment">
<AdjustmentByAccountIDAndAmountAndAdjustmentDate>
<AdjustmentDate>2026-01-15T08:44:51.4983596+00:00</AdjustmentDate>
<AdjustmentDescription>sample string 3</AdjustmentDescription>
<Adjustment_Amount>1</Adjustment_Amount>
<Adjustment_Type>sample string 2</Adjustment_Type>
<ID>1</ID>
</AdjustmentByAccountIDAndAmountAndAdjustmentDate>
<AdjustmentByAccountIDAndAmountAndAdjustmentDate>
<AdjustmentDate>2026-01-15T08:44:51.4983596+00:00</AdjustmentDate>
<AdjustmentDescription>sample string 3</AdjustmentDescription>
<Adjustment_Amount>1</Adjustment_Amount>
<Adjustment_Type>sample string 2</Adjustment_Type>
<ID>1</ID>
</AdjustmentByAccountIDAndAmountAndAdjustmentDate>
</ArrayOfAdjustmentByAccountIDAndAmountAndAdjustmentDate>