POST api/loans/{accountNumber}/payments/adjustment

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountNumber

integer

Required

Body Parameters

PaymentAdjustmentSubModel
NameDescriptionTypeAdditional 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-07-05T08:10:26.4733682+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-07-05T08:10:26.4733682+00:00</EffectiveDate>
  <EntryType>sample string 3</EntryType>
  <Note>sample string 5</Note>
</PaymentAdjustmentSubModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PaymentAdjustmentSubModel'

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.