GET v2/apps/{appId}/push/{pushId}

Grabs details about a specific Push Notification on an application

Request Information

URI Parameters

Name Type Description
appId integer

Application Id

Additional Info :

Required

pushId integer

Push Notification Id

Additional Info :

Required

Body Parameters

None.

Response Information

Resource Description

Details about the sent notification if found

PushResponse
Name Type Description
Id integer

Id of the Push Notification in the system

Title string

Title of the push notification, displayed on the device

Url string

Attached Url of the notification if one was sent

Message string

Actual message of the notification

DateSent date

UTC Date and Time the notification was sent

IsGeo boolean

True if the notification was a Geo/Location based notification

PreviewerOnly boolean

True if the notification was only sent/displayed to the Previewer App instead of the actual built app

IsExternalLink boolean

True if the Url is to be opened in a seperate app (browser) on the device. Could be true even if no Url is specified, but typically is false in that case.

MediaImage string

Image the will be displayed on the details view.

IsTenant boolean

Image the will be displayed on the details view.

Target string

Target of the push being sent

Language string

Language set when sent by the user.

Sources Collection of string

Source where the push notification came from

DataInfo string

Additional information of the push notification

Response Formats

{
  "id": 34,
  "title": "Welcome to our app",
  "url": "",
  "message": "Use the Coupon Code APP2016 to get $10 off you purchase.",
  "dateSent": "2024-04-04T11:14:57.6031807Z",
  "isGeo": false,
  "previewerOnly": true,
  "isExternalLink": false,
  "mediaImage": null,
  "isTenant": false,
  "target": null,
  "language": null,
  "sources": null,
  "dataInfo": null
}
<PushResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models">
  <DataInfo i:nil="true" />
  <DateSent>2024-04-04T11:14:57.6031807+00:00</DateSent>
  <Id>34</Id>
  <IsExternalLink>false</IsExternalLink>
  <IsGeo>false</IsGeo>
  <IsTenant>false</IsTenant>
  <Language i:nil="true" />
  <MediaImage i:nil="true" />
  <Message>Use the Coupon Code APP2016 to get $10 off you purchase.</Message>
  <PreviewerOnly>true</PreviewerOnly>
  <Sources xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
  <Target i:nil="true" />
  <Title>Welcome to our app</Title>
  <Url></Url>
</PushResponse>