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.
| Parameter | Default | Meaning |
|---|---|---|
| url | The destination URL of the message | |
| varname | message | The name of the message variable (not used if Output is specified) |
| output | A 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.