Shows a list of email notification jobs.

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

Fetches a list email notification jobs. The resultant list maybe filtered by providing a filter criteria.
Note: Email 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 emailNotificationJobs to be returned.
{
    &quot;fromApplication&quot;: &quot;MachineMonitor&quot;
}

Unencoded example filter value to fetch all emailNotificationJobs 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;emailNotificationJobs&quot;:[{&quot;id&quot;:&quot;59f92744-7bbc-4540-8b78-ee9976befc1a&quot;,&quot;status&quot;:&quot;DispatchedWithFailures&quot;,&quot;startTime&quot;:&quot;2021-04-21T17:32:28.00&quot;,&quot;fromApplication&quot;:&quot;MachineMonitor&quot;,&quot;maliciousAttachments&quot;:[{&quot;filename&quot;:&quot;app.pdf&quot;,&quot;threat&quot;:&quot;worm found&quot;},{&quot;filename&quot;:&quot;app.pdf&quot;,&quot;threat&quot;:&quot;worm found&quot;}]},{&quot;id&quot;:&quot;59f92744-7bbc-4540-8b78-ee9976befc1a&quot;,&quot;status&quot;:&quot;DispatchedWithFailures&quot;,&quot;startTime&quot;:&quot;2021-04-21T17:32:28.00&quot;,&quot;fromApplication&quot;:&quot;MachineMonitor&quot;,&quot;maliciousAttachments&quot;:[{&quot;filename&quot;:&quot;app.pdf&quot;,&quot;threat&quot;:&quot;worm found&quot;},{&quot;filename&quot;:&quot;app.pdf&quot;,&quot;threat&quot;:&quot;worm found&quot;}]}],&quot;page&quot;:{&quot;size&quot;:-39340454,&quot;totalElements&quot;:-35616766,&quot;totalPages&quot;:84490213,&quot;number&quot;:-72393251}}