POST api/loans/{bhphAccountNumber}/adjustments

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bhphAccountNumber

integer

Required

Body Parameters

Adjustment
NameDescriptionTypeAdditional information
AccountNumber

integer

None.

AdjustmentType

string

None.

EffectiveDate

date

None.

BeginningPrincipal

decimal number

None.

Amount

decimal number

None.

EndingPrincipal

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountNumber": 1,
  "AdjustmentType": "sample string 2",
  "EffectiveDate": "2025-07-05T07:38:40.0809221+00:00",
  "BeginningPrincipal": 4.0,
  "Amount": 5.0,
  "EndingPrincipal": 6.0
}

application/xml, text/xml

Sample:
<Adjustment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.Models">
  <AccountNumber>1</AccountNumber>
  <AdjustmentType>sample string 2</AdjustmentType>
  <Amount>5</Amount>
  <BeginningPrincipal>4</BeginningPrincipal>
  <EffectiveDate>2025-07-05T07:38:40.0809221+00:00</EffectiveDate>
  <EndingPrincipal>6</EndingPrincipal>
</Adjustment>

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 'Adjustment'

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.