Used to get summary information of push actions related to campaigns.

Simple campaigns will send out a single batch of messages at once. However, more complex campaigns will send out batches of messages at varying intervals over the lifetime of the campaign. For example, a location-based campaign can send single notifications to individual devices as they enter locations while the campaign is running.

Each individual event for a campaign where messages are sent is known as a push action.

Example

Return the ID and message attributes of all push notification actions that were updated since the 1 Jan 2015 (using Unix time 1420070400).

curl --request POST \
  --url https://external-api.xtremepush.com/api/external/list/push \
  --header 'content-type: application/json' \
  --data '{
    "apptoken": "YOUR_APPTOKEN",
    "select": ["message", "message_id"],
    "condition": [
      ["update_time", ">", "1420070400"]
    ]
  }'
Language
Click Try It! to start a request and see the response here!