Shows a list of all sms notification jobs.
GET {{baseUrl}}/multicastSMSNotificationJobs?filter=<string>&page=0&size=10
Fetches a list sms notification jobs. The resultant list maybe filtered by providing a filter criteria.
Note: SMS 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 sms notification jobs to be returned. |
{
"fromApplication": "MachineMonitor"
}
Unencoded example filter value to fetch all sms notification jobs from application 'MachineMonitor' with status 'Queued':
{
"fromApplication": "MachineMonitor",
"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
{"multicastSMSNotificationJobs":[{"id":"59f92744-7bbc-4540-8b78-ee9976befc1a","fromApplication":"MachineMonitor","status":"queued","startTime":"2017-07-21T17:32:28.000Z"},{"id":"59f92744-7bbc-4540-8b78-ee9976befc1a","fromApplication":"MachineMonitor","status":"queued","startTime":"2017-07-21T17:32:28.000Z"}],"page":{"size":70511231,"totalElements":20191027,"totalPages":36365626,"number":45745222}}