Build and run workflows using the Pushsafer API. Use 1000s of open source triggers and actions across 400+ apps. Or write custom code to integrate any app or API in seconds.
Send Pushsafer push-notifications from every pipedream trigger!
return await require("@pipedreamhq/platform").axios(this, { url: `https://www.pushsafer.com/api`, params: { "k": `${auths.pushsafer.private_key}`, "d": `${auths.pushsafer.device}`, "m": `Message / text of the push notification`, }, })
You can add more pushsafer parameter by yourself
return await require("@pipedreamhq/platform").axios(this, { url: `https://www.pushsafer.com/api`, params: { "k": `${auths.pushsafer.private_key}`, "d": `${auths.pushsafer.device}`, "m": `Message / text of the push notification`, "t": `Yout title`, "i": `12`, "c": `#FF0000`, "s": `12`, "v": `3`, "u": `https://www.pushsafer.com`, "p": `2`, "a": `1`, "ao": `Yes|No|Maybe`, }, })
Weitere Informationen zum Ersetzten von Werten (Titel, Nachricht, Sound, Icon, Vibration) in deiner Push-Benachrichtigung, findest du in unserer API Beschreibung!