Hi
I am using Pushover sending post messages through the http request node which is allowing me to get the receipt parameter of an emergency message from the response. In order to determine if this message has been acknowledged I need to make a get request as outlined below.
Receipts and Callbacks API
Applications sending emergency-priority notifications will receive a receipt parameter from our API when a notification has been queued. This parameter is a 30 character string containing the character set [A-Za-z0-9]. This receipt can be used to periodically poll our receipts API to get the status of your notification, up to 1 week after your notification has been received.
Submit a GET request (no faster than once every 5 seconds) to:
https://api.pushover.net/1/receipts/(your receipt).json?token=(your app token)
Include the receipt in the URL and your application's token as the token parameter. If the receipt is valid, our API will respond with some integer-valued parameters about your notification:
I am not sure if the app token should be appended to the url or if it is somehow included as a separate parameter within the http request. I am sure the app token is correct as it is used to generate the original notifications. Just entering the parameter within the (you app token) space with or without brackets throws an invalid error.
I just get errors relating to the app token being invalid and I think I must be using the incorrect method.
It would appear that not many are using the notification acknowledge API as google searches have been fruitless.
Any guidance would be appreciated.
Thanks