FME Flow: 2025.0

Notification Directives

The following notification directives are supported in the data download service and job submitter service:

  • nm_jobsuccess_topic - The name of the notification service topic to be notified when a job succeeds.
  • nm_jobfailure_topic - The name of the notification service topic to be notified when a job fails.

For more information about job success and job failure notifications, see Monitoring FME Flow Events from Topics.

The data download and job submitter services can also pass other directives prefixed with nm_ to the notification service for customized usage. For example, this data download service URL passes nm_title and nm_desc directives. These directives can be used as keywords in the email template of an Email external action:

http://localhost/fmedatadownload/Samples/austinDownload.fmw?opt_servicemode=async&opt_requesteremail=test%40email.com&nm_title=Sample&nm_desc=Hello%20World

Notification directives can also be provided in the REST Service and FME Flow CLI. Custom directives do not need to be prefixed with nm_. For requests submitted via the REST API, provide the directive name and value in the JSON request body. For example:

"NMDirectives": {

"directives": [

{

"name": "string",

"value": "string"

}

],

"failureTopics": [

"string"

],

"successTopics": [

"string"

]

}

See Also

Tags nmdirectives, nm_directives, nm directives, job success topic, job failure topic, notification job success