POST api/sidenotes
Request Information
URI Parameters
None.
Body Parameters
SideNoteSubModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountNumber | integer |
None. |
|
| DealId | integer |
None. |
|
| Description | string |
None. |
|
| LoanAmount | decimal number |
None. |
|
| LoanRate | decimal number |
None. |
|
| LoanDate | date |
None. |
|
| AccountType | string |
None. |
|
| Schedule | Collection of SideNoteScheduleSubModel |
None. |
|
| ImportedSideNoteID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountNumber": 1,
"DealId": 2,
"Description": "sample string 3",
"LoanAmount": 4.0,
"LoanRate": 5.1,
"LoanDate": "2025-12-06T03:32:44.0128874+00:00",
"AccountType": "sample string 7",
"Schedule": [
{
"NumberPayments": 1,
"Payment": 2.0,
"Frequency": "sample string 3",
"FirstPaymentDate": "2025-12-06T03:32:44.0128874+00:00"
},
{
"NumberPayments": 1,
"Payment": 2.0,
"Frequency": "sample string 3",
"FirstPaymentDate": "2025-12-06T03:32:44.0128874+00:00"
}
],
"ImportedSideNoteID": "sample string 8"
}
application/xml, text/xml
Sample:
<SideNoteSubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels">
<AccountNumber>1</AccountNumber>
<AccountType>sample string 7</AccountType>
<DealId>2</DealId>
<Description>sample string 3</Description>
<ImportedSideNoteID>sample string 8</ImportedSideNoteID>
<LoanAmount>4</LoanAmount>
<LoanDate>2025-12-06T03:32:44.0128874+00:00</LoanDate>
<LoanRate>5.1</LoanRate>
<Schedule>
<SideNoteScheduleSubModel>
<FirstPaymentDate>2025-12-06T03:32:44.0128874+00:00</FirstPaymentDate>
<Frequency>sample string 3</Frequency>
<NumberPayments>1</NumberPayments>
<Payment>2</Payment>
</SideNoteScheduleSubModel>
<SideNoteScheduleSubModel>
<FirstPaymentDate>2025-12-06T03:32:44.0128874+00:00</FirstPaymentDate>
<Frequency>sample string 3</Frequency>
<NumberPayments>1</NumberPayments>
<Payment>2</Payment>
</SideNoteScheduleSubModel>
</Schedule>
</SideNoteSubModel>
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. |