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
Key | Datatype | Required | Description |
---|---|---|---|
filter | string | JSON string describing filter operations performed on pushNotificationJobs to be returned. |
{
"mobileAppId": "65k88924-7ffc-1203-6h56-rr8834budg1w"
}
Unencoded example filter value to fetch all pushNotificationJobs in context of a specific mobile app with status 'queued':
{
"mobileAppId": "65k88924-7ffc-1203-6h56-rr8834budg1w",
"status": "queued"
}
|
| page
| number | | Specifies the requested page index |
| size
| number | | Specifies the number of elements in a page. Maximum size value allowed is 50. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"multicastPushNotificationJobs":[{"id":"59f67823-5bhc-4780-8b23-ee8876mbtg9a","status":"queued","mobileAppId":"65k88924-7ffc-1203-6h56-rr8834budg1w","startTime":"2017-07-21T17:32:28.000Z"},{"id":"59f67823-5bhc-4780-8b23-ee8876mbtg9a","status":"queued","mobileAppId":"65k88924-7ffc-1203-6h56-rr8834budg1w","startTime":"2017-07-21T17:32:28.000Z"}],"page":{"size":-80931905,"totalElements":20142757,"totalPages":-66169654,"number":5405225}}