Hi all,
I want to send push notification to a user when a task is assigned. I'm using "PowerAppsNotificationV2" connector. I trigger the connector on click of a button:
PowerAppsNotificationV2.SendPushNotificationV2("PowerApps","9c79a1ed-9e13-49f0-bf2e-eb0b72985f57",["xyz@gmail.com"],"test message",true,{key:"TaskId", value:"d7eef785-014a-ec11-8c62-6045bd875946"});
I'm facing below error:
If I look at details of the app, then the id is correct:
What could be the issue? how can I pass the "app" parameter?
Hi @v-chenzhi ,
Thanks for your response. Unformatunately, both approaches are not working:
Could you share your version which is working (and has parameter)? If you can try to pass simple text paramter e.g. name="Adam".
Hi @msalah ,
I don't know the Json format of the parameters you passed.
According to your description, I guess there are two possibilities.
Please try the following workaround.
{"key":"TaskId", "value":"d7eef785-014a-ec11-8c62-6045bd875946"}
Or
{
"key": {
"TaskId": {
"value": "d7eef785-014a-ec11-8c62-6045bd875946"
}
}
}
Best Regards,
Zhi Chen
Thanks @v-chenzhi for your response. Using the above mentioned statement / syntax the notification is working. However the paramter "TaskId" is not passed (not working). Could you check if it is working for you if you pass parameter?
Hi @BHR,
There is something wrong with the second parameter of your formula
I have a test on my side for your reference.
PowerAppsNotificationV2.SendPushNotificationV2("PowerApps", JSON({ appIdentifier: "0ab5ed74-f3e6-4c52-872c-5d3fbedef662",displayName: "1119", type: "CanvasApp"}), ["ZhiChen@xxx.com"], "This is a test!", true, {})
It works fine.
Please modify your formula as following
PowerAppsNotificationV2.SendPushNotificationV2("PowerApps",JSON({appIdentifier:"9c79a1ed-9e13-49f0-bf2e-eb0b72985f57",displayName:"YourAppsName",type: "CanvasApp"}),["xyz@gmail.com"],"test message",true,{key:"TaskId", value:"d7eef785-014a-ec11-8c62-6045bd875946"})
Best Regards,
Zhi Chen
This video by @RezaDorrani mentions that there's an error with V2 (jump to 19:30) so he uses V1 instead. This video was made Jun-21 so maybe the error has been fixed, not sure?
Maybe try using the first Notifications version instead or building a Flow like at the start of this video?
WarrenBelz
146,731
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,075
Most Valuable Professional