POST api/loans/{bhphAccountNumber}/adjustments
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bhphAccountNumber | integer |
Required |
Body Parameters
Adjustment| Name | Description | Type | Additional 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-12-06T03:33:40.4016881+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-12-06T03:33:40.4016881+00:00</EffectiveDate> <EndingPrincipal>6</EndingPrincipal> </Adjustment>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |