Shows a list of push notification jobs

GET {{baseUrl}}/multicastPushNotificationJobs?filter=<string>&page=0&size=10

Fetches a list of push notification jobs. The resultant list maybe filtered by providing a filter criteria.
Note Push notification jobs are stored in the system up to 180 days from the date of creation.

Request Params

KeyDatatypeRequiredDescription
filterstringJSON string describing filter operations performed on pushNotificationJobs to be returned.
{
    &quot;mobileAppId&quot;: &quot;65k88924-7ffc-1203-6h56-rr8834budg1w&quot;
}

Unencoded example filter value to fetch all pushNotificationJobs in context of a specific mobile app with status 'queued':

{
  &quot;mobileAppId&quot;: &quot;65k88924-7ffc-1203-6h56-rr8834budg1w&quot;,
  &quot;status&quot;: &quot;queued&quot;
}

| | page | number | | Specifies the requested page index | | size | number | | Specifies the number of elements in a page. Maximum size value allowed is 50. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;multicastPushNotificationJobs&quot;:[{&quot;id&quot;:&quot;59f67823-5bhc-4780-8b23-ee8876mbtg9a&quot;,&quot;status&quot;:&quot;queued&quot;,&quot;mobileAppId&quot;:&quot;65k88924-7ffc-1203-6h56-rr8834budg1w&quot;,&quot;startTime&quot;:&quot;2017-07-21T17:32:28.000Z&quot;},{&quot;id&quot;:&quot;59f67823-5bhc-4780-8b23-ee8876mbtg9a&quot;,&quot;status&quot;:&quot;queued&quot;,&quot;mobileAppId&quot;:&quot;65k88924-7ffc-1203-6h56-rr8834budg1w&quot;,&quot;startTime&quot;:&quot;2017-07-21T17:32:28.000Z&quot;}],&quot;page&quot;:{&quot;size&quot;:-80931905,&quot;totalElements&quot;:20142757,&quot;totalPages&quot;:-66169654,&quot;number&quot;:5405225}}