POST api/loans/{accountNumber}/defermentnotice/preview/email
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNumber | integer |
Required |
Body Parameters
DefermentNoticeEmailSubModel| Name | Description | Type | Additional information |
|---|---|---|---|
| To | string |
None. |
|
| LotId | integer |
None. |
|
| SchedulesId | Collection of integer |
None. |
|
| DefermentFee | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"To": "sample string 1",
"LotId": 2,
"SchedulesId": [
1,
2
],
"DefermentFee": 3.0
}
application/xml, text/xml
Sample:
<DefermentNoticeEmailSubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels">
<DefermentFee>3</DefermentFee>
<LotId>2</LotId>
<SchedulesId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</SchedulesId>
<To>sample string 1</To>
</DefermentNoticeEmailSubModel>
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.