POST api/loans/{accountNumber}/payments/principalonly
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNumber | integer |
Required |
Body Parameters
PrincipalOnlySubModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EffectiveDate | date |
None. |
|
| Amount | decimal number |
None. |
|
| TransactionId | string |
None. |
|
| ReferenceNumber | string |
None. |
|
| PaymentMethod | string |
None. |
|
| DeliveryMethod | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EffectiveDate": "2025-12-06T03:33:55.9506751+00:00",
"Amount": 2.0,
"TransactionId": "sample string 3",
"ReferenceNumber": "sample string 4",
"PaymentMethod": "sample string 5",
"DeliveryMethod": "sample string 6"
}
application/xml, text/xml
Sample:
<PrincipalOnlySubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels"> <Amount>2</Amount> <DeliveryMethod>sample string 6</DeliveryMethod> <EffectiveDate>2025-12-06T03:33:55.9506751+00:00</EffectiveDate> <IsRetakingPayment>true</IsRetakingPayment> <PaymentMethod>sample string 5</PaymentMethod> <ReferenceNumber>sample string 4</ReferenceNumber> <TransactionId>sample string 3</TransactionId> </PrincipalOnlySubModel>
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.