Pushover Notification Sounds

OSU_BuckeyesFan

Young grasshopper
Apr 30, 2023
38
9
Ohio
I used the thread below as a guide to set up Pushover well over a year ago and it has been working flawlessly. I want to take it one step further and set up a custom notification sound for one of my zones/areas and I can't figure out how to do so. Through the Pushover webpage, I can push different sounds as a test to my devices but I can't figure out how to write a script to do so. Is this possible? If so, any guidance on how to do so?

 
The cited post discusses the sound argument...

1734877377858.jpeg

NOTE: To use Blue Iris sounds they first must be uploaded as custom sounds to your Pushover Dashboard.
See this post and this post.
 
Last edited:
where do I insert the sound?
literally anywhere; the API is agnostic on the position.

try this...

Code:
https://api.pushover.net/1/messages.json -s --form-string "token=MY TOKEN" --form-string "user=MY USER" --form-string "message=&CAM/ &MEMO" --form-string "sound=YOUR_PUSHOVER_SOUND_HERE" -F "attachment=@C:\BlueIris\Alerts\&ALERT_PATH"
 
Last edited:
literally anywhere; the API is agnostic on the position.

try this...

Code:
https://api.pushover.net/1/messages.json -s --form-string "token=MY TOKEN" --form-string "user=MY USER" --form-string "message=&CAM/ &MEMO" --form-string "sound=YOUR_PUSHOVER_SOUND_HERE" -F "attachment=@C:\BlueIris\Alerts\&ALERT_PATH"
I thought it had to go in a certain order, thanks for the info. I just tested it with a built-in pushover sound and it works! Thanks for taking the time to explain and help out!