GET api/Project/GetInAppMessageSchedule

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

InAppMessageScheduleViewModel
NameDescriptionTypeAdditional information
Schedule

date

None.

Message

string

None.

AlreadyViewed

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "schedule": "2026-06-19T19:11:01.2801033+00:00",
  "message": "sample string 1",
  "alreadyViewed": true
}

application/xml, text/xml

Sample:
<InAppMessageScheduleViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
  <AlreadyViewed>true</AlreadyViewed>
  <Message>sample string 1</Message>
  <Schedule xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2026-06-19T19:11:01.2801033Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </Schedule>
</InAppMessageScheduleViewModel>