GET api/Form2290/GetAllFromCompleteForReminderSms?day={day}&month={month}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
day

integer

Required

month

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ReminderSmsDTO
NameDescriptionTypeAdditional information
body

string

None.

number

string

None.

businessId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "body": "sample string 1",
    "number": "sample string 2",
    "businessId": 3
  },
  {
    "body": "sample string 1",
    "number": "sample string 2",
    "businessId": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfReminderSmsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
  <ReminderSmsDTO>
    <body>sample string 1</body>
    <businessId>3</businessId>
    <number>sample string 2</number>
  </ReminderSmsDTO>
  <ReminderSmsDTO>
    <body>sample string 1</body>
    <businessId>3</businessId>
    <number>sample string 2</number>
  </ReminderSmsDTO>
</ArrayOfReminderSmsDTO>