HTTP JSON

This output is used to write a JSON message to an HTTP or HTTPS URL.

This is commonly used when notifying cloud-based services such as Microsoft PowerAutomate that an event has taken place.

ParameterDefaultMeaning
urlThe destination URL of the message
varnamemessageThe name of the message variable (not used if Output is specified)
outputA JSON object containing event substitutions

Example

[
   {
       "method": "http_json",
       "url": "http://mypowerautomate.trigger",
       "output": { 
           "message": "%M",
           "date": "%S"
       }
   }
]

The above example would send a JSON-encoded message to the given url..

Other Modules

Return to the list of output modules.