POST Marketing/PushNotifications

Get all the Push Notifications

Request Information

URI Parameters

None.

Body Parameters

GetPushNotificationsBinding
NameDescriptionTypeAdditional information
Filter

Filter

None.

Range

AdminFilterRange

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PushNotificationsView
NameDescriptionTypeAdditional information
TotalCount

integer

None.

PushNotifications

Collection of PushNotification

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "PushNotifications": [
    {
      "ID": 1,
      "Created": "2025-12-06T09:18:04.6684022+01:00",
      "PublishDate": "2025-12-06T09:18:04.6684022+01:00",
      "Title": "sample string 3",
      "Body": "sample string 4"
    },
    {
      "ID": 1,
      "Created": "2025-12-06T09:18:04.6684022+01:00",
      "PublishDate": "2025-12-06T09:18:04.6684022+01:00",
      "Title": "sample string 3",
      "Body": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<PushNotificationsView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Marketing">
  <PushNotifications>
    <PushNotification>
      <Body>sample string 4</Body>
      <Created>2025-12-06T09:18:04.6684022+01:00</Created>
      <ID>1</ID>
      <PublishDate>2025-12-06T09:18:04.6684022+01:00</PublishDate>
      <Title>sample string 3</Title>
    </PushNotification>
    <PushNotification>
      <Body>sample string 4</Body>
      <Created>2025-12-06T09:18:04.6684022+01:00</Created>
      <ID>1</ID>
      <PublishDate>2025-12-06T09:18:04.6684022+01:00</PublishDate>
      <Title>sample string 3</Title>
    </PushNotification>
  </PushNotifications>
  <TotalCount>1</TotalCount>
</PushNotificationsView>