POST api/GetScheduleNotificationsList

Request Information

URI Parameters

None.

Body Parameters

SchedulerInputParams
NameDescriptionTypeAdditional information
SchedulerView

string

None.

SchedulerDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "SchedulerView": "sample string 1",
  "SchedulerDate": "2024-09-19T14:14:59.8728153-04:00"
}

application/xml, text/xml

Sample:
<SchedulerInputParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses">
  <SchedulerDate>2024-09-19T14:14:59.8728153-04:00</SchedulerDate>
  <SchedulerView>sample string 1</SchedulerView>
</SchedulerInputParams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ADMNotificationSchedule
NameDescriptionTypeAdditional information
NotificationId

integer

None.

Name

string

None.

Description

string

None.

Category

string

None.

Type

string

None.

Subject

string

None.

Frequency

string

None.

Severity

string

None.

RowStatus

string

None.

StartTime

date

None.

EndTime

date

None.

AllDay

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "NotificationId": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Category": "sample string 4",
    "Type": "sample string 5",
    "Subject": "sample string 6",
    "Frequency": "sample string 7",
    "Severity": "sample string 8",
    "RowStatus": "sample string 9",
    "StartTime": "2024-09-19T14:14:59.8728153-04:00",
    "EndTime": "2024-09-19T14:14:59.8728153-04:00",
    "AllDay": true
  },
  {
    "NotificationId": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Category": "sample string 4",
    "Type": "sample string 5",
    "Subject": "sample string 6",
    "Frequency": "sample string 7",
    "Severity": "sample string 8",
    "RowStatus": "sample string 9",
    "StartTime": "2024-09-19T14:14:59.8728153-04:00",
    "EndTime": "2024-09-19T14:14:59.8728153-04:00",
    "AllDay": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfADMNotificationSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses">
  <ADMNotificationSchedule>
    <AllDay>true</AllDay>
    <Category>sample string 4</Category>
    <Description>sample string 3</Description>
    <EndTime>2024-09-19T14:14:59.8728153-04:00</EndTime>
    <Frequency>sample string 7</Frequency>
    <Name>sample string 2</Name>
    <NotificationId>1</NotificationId>
    <RowStatus>sample string 9</RowStatus>
    <Severity>sample string 8</Severity>
    <StartTime>2024-09-19T14:14:59.8728153-04:00</StartTime>
    <Subject>sample string 6</Subject>
    <Type>sample string 5</Type>
  </ADMNotificationSchedule>
  <ADMNotificationSchedule>
    <AllDay>true</AllDay>
    <Category>sample string 4</Category>
    <Description>sample string 3</Description>
    <EndTime>2024-09-19T14:14:59.8728153-04:00</EndTime>
    <Frequency>sample string 7</Frequency>
    <Name>sample string 2</Name>
    <NotificationId>1</NotificationId>
    <RowStatus>sample string 9</RowStatus>
    <Severity>sample string 8</Severity>
    <StartTime>2024-09-19T14:14:59.8728153-04:00</StartTime>
    <Subject>sample string 6</Subject>
    <Type>sample string 5</Type>
  </ADMNotificationSchedule>
</ArrayOfADMNotificationSchedule>