pipedream

pipedream - Pushsafer API Integrations

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`,
  },
})

How to send push notifications out of pipedream


For more information about replacing values (title, message, icon, icon color, sound, vibration) in your push notification, check out our API description!


© 2016 - 2024 Pushsafer.com, All rights reserved.