GET NotificationShowsAPI/GetNotificationShowsByNotificationsID?notificationsid={notificationsid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
notificationsid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of NotificationShows
NameDescriptionTypeAdditional information
NotificationShowID

integer

None.

NotificationsID

integer

None.

PeopleIDShowTo

integer

None.

Viewed

boolean

None.

HideInMyFeed

boolean

None.

NotificationText

string

None.

NotificationTitle

string

None.

DateAdded

date

None.

DateAddedStr

string

None.

TheSender

string

None.

TheViewer

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "NotificationShowID": 1,
    "NotificationsID": 2,
    "PeopleIDShowTo": 3,
    "Viewed": true,
    "HideInMyFeed": true,
    "NotificationText": "sample string 6",
    "NotificationTitle": "sample string 7",
    "DateAdded": "2024-05-02T21:28:01.5734015+01:00",
    "DateAddedStr": "sample string 9",
    "TheSender": "sample string 10",
    "TheViewer": "sample string 11"
  },
  {
    "NotificationShowID": 1,
    "NotificationsID": 2,
    "PeopleIDShowTo": 3,
    "Viewed": true,
    "HideInMyFeed": true,
    "NotificationText": "sample string 6",
    "NotificationTitle": "sample string 7",
    "DateAdded": "2024-05-02T21:28:01.5734015+01:00",
    "DateAddedStr": "sample string 9",
    "TheSender": "sample string 10",
    "TheViewer": "sample string 11"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotificationShows xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QMA2020.Models">
  <NotificationShows>
    <DateAdded>2024-05-02T21:28:01.5734015+01:00</DateAdded>
    <DateAddedStr>sample string 9</DateAddedStr>
    <HideInMyFeed>true</HideInMyFeed>
    <NotificationShowID>1</NotificationShowID>
    <NotificationText>sample string 6</NotificationText>
    <NotificationTitle>sample string 7</NotificationTitle>
    <NotificationsID>2</NotificationsID>
    <PeopleIDShowTo>3</PeopleIDShowTo>
    <TheSender>sample string 10</TheSender>
    <TheViewer>sample string 11</TheViewer>
    <Viewed>true</Viewed>
  </NotificationShows>
  <NotificationShows>
    <DateAdded>2024-05-02T21:28:01.5734015+01:00</DateAdded>
    <DateAddedStr>sample string 9</DateAddedStr>
    <HideInMyFeed>true</HideInMyFeed>
    <NotificationShowID>1</NotificationShowID>
    <NotificationText>sample string 6</NotificationText>
    <NotificationTitle>sample string 7</NotificationTitle>
    <NotificationsID>2</NotificationsID>
    <PeopleIDShowTo>3</PeopleIDShowTo>
    <TheSender>sample string 10</TheSender>
    <TheViewer>sample string 11</TheViewer>
    <Viewed>true</Viewed>
  </NotificationShows>
</ArrayOfNotificationShows>