POST api/loans/{accountNumber}/payments/adjustment
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNumber | integer |
Required |
Body Parameters
PaymentAdjustmentSubModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EffectiveDate | date |
None. |
|
| AdjustmentType | string |
None. |
|
| EntryType | string |
None. |
|
| Amount | decimal number |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EffectiveDate": "2025-12-06T03:33:56.6786872+00:00",
"AdjustmentType": "sample string 2",
"EntryType": "sample string 3",
"Amount": 4.0,
"Note": "sample string 5"
}
application/xml, text/xml
Sample:
<PaymentAdjustmentSubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels"> <AdjustmentType>sample string 2</AdjustmentType> <Amount>4</Amount> <EffectiveDate>2025-12-06T03:33:56.6786872+00:00</EffectiveDate> <EntryType>sample string 3</EntryType> <Note>sample string 5</Note> </PaymentAdjustmentSubModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.