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

KeyDatatypeRequiredDescription
filterstringJSON string describing filter operations performed on sms notification jobs to be returned.
{
    &quot;fromApplication&quot;: &quot;MachineMonitor&quot;
}

Unencoded example filter value to fetch all sms notification jobs from application 'MachineMonitor' with status 'Queued':

{
  &quot;fromApplication&quot;: &quot;MachineMonitor&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;multicastSMSNotificationJobs&quot;:[{&quot;id&quot;:&quot;59f92744-7bbc-4540-8b78-ee9976befc1a&quot;,&quot;fromApplication&quot;:&quot;MachineMonitor&quot;,&quot;status&quot;:&quot;queued&quot;,&quot;startTime&quot;:&quot;2017-07-21T17:32:28.000Z&quot;},{&quot;id&quot;:&quot;59f92744-7bbc-4540-8b78-ee9976befc1a&quot;,&quot;fromApplication&quot;:&quot;MachineMonitor&quot;,&quot;status&quot;:&quot;queued&quot;,&quot;startTime&quot;:&quot;2017-07-21T17:32:28.000Z&quot;}],&quot;page&quot;:{&quot;size&quot;:70511231,&quot;totalElements&quot;:20191027,&quot;totalPages&quot;:36365626,&quot;number&quot;:45745222}}