GET api/Form2290/GetAllFromCompleteForReminder?day={day}&month={month}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| day | integer |
Required |
|
| month | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReminderEmailDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| body | string |
None. |
|
| string |
None. |
||
| businessId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"body": "sample string 1",
"email": "sample string 2",
"businessId": 3
},
{
"body": "sample string 1",
"email": "sample string 2",
"businessId": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfReminderEmailDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
<ReminderEmailDTO>
<body>sample string 1</body>
<businessId>3</businessId>
<email>sample string 2</email>
</ReminderEmailDTO>
<ReminderEmailDTO>
<body>sample string 1</body>
<businessId>3</businessId>
<email>sample string 2</email>
</ReminderEmailDTO>
</ArrayOfReminderEmailDTO>