The easiest way to manage single direction integration between UiPath and Discord is through the use of a webhook connected to a server. To connect a webhook to the server, navigate to Server Settings > Integrations:


Name the Webhook and select the channel it should post messages too:

Ensure that the UiPath.WebAPI.Activities has been installed before dragging over a HTTP request activity:

Then configure the following properties:
- Accept Format: JSON
- Request Method: POST
- Request URL: <Webhook URL>
- Body: “{” + “””username””” + “:” + “””<username>””” + “,” + “””content””” + “:” + “””<message>””” + “}”
- Body Format: application/json



Leave a Reply