Push Notifications from Epicor with PushOver

I wanted to share the code I use to get push notifications from Epicor. I use a service called PushOver. I write a Epicor function using the below code and place it at the end of a schedule or process set and this tells me when the process is complete. Thought it might help someone who does sys admin work on the weekends like myself.

var parameters = new Dictionary<string, string> {
    ["token"] = "Your Pushover APP Token here",
    ["user"] = "Your Pushover User Token here",
    ["message"] = "Your important message here"
};
var client = new System.Net.Http.HttpClient();
var response = client.PostAsync("https://api.pushover.net/1/messages.json", new
System.Net.Http.FormUrlEncodedContent(parameters));