POST schedules/monthly

Request Information

URI Parameters

None.

Body Parameters

MonthlyScheduledMessage
NameDescriptionTypeAdditional information
DayOfMonth

string

Required

Matching regular expression pattern: (1|2|3|4|L)

DayOfWeek

string

Required

Matching regular expression pattern: (MON|TUE|WED|THU|FRI|SAT|SUN|W)

Time

string

Required

Text

string

Required

String length: inclusive between 0 and 2000

Sender

string

Required

String length: inclusive between 0 and 16

Receivers

Collection of string

None.

SessionData

string

String length: inclusive between 0 and 200

Request Formats

application/json, text/json

Sample:
{
  "DayOfMonth": "sample string 1",
  "DayOfWeek": "sample string 2",
  "Time": "00:00:00.1234567",
  "Text": "sample string 5",
  "Sender": "sample string 6",
  "Receivers": [
    "sample string 1",
    "sample string 2"
  ],
  "SessionData": "sample string 7"
}

application/xml, text/xml

Sample:
<MonthlyScheduledMessage xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Text>sample string 5</Text>
  <Sender>sample string 6</Sender>
  <Receivers>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Receivers>
  <SessionData>sample string 7</SessionData>
  <Time>00:00:00.1234567</Time>
  <DayOfMonth>sample string 1</DayOfMonth>
  <DayOfWeek>sample string 2</DayOfWeek>
</MonthlyScheduledMessage>

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>