Push offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time. Get Started for free.
Go to siteThe Push by Techulus API offers a straightforward way to send notifications directly to your devices. With this functionality within Pipedream, you can craft workflows that alert you or someone else when certain events happen in your apps or in your code. Think of it as wiring a custom doorbell for the digital events that matter to you. Whether you're tracking sales on your e-commerce platform, monitoring website uptime, or just want to get pinged when your long-running script finishes, Push by Techulus nudges you in real time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
push_by_techulus: {
type: "app",
app: "push_by_techulus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://push.techulus.com/api/v1/notify/${this.push_by_techulus.$auth.api_key}`,
headers: {
"x-api-key": `${this.push_by_techulus.$auth.api_key}`,
"Content-Type": `application/json`,
},
params: {
title: `Welcome to Push by Techulus`,
body: `This is your first notification`,
},
})
},
})
Sales Alert: Set up a pipeline that monitors your e-commerce platform for new sales. Each time a sale goes through, trigger a Push notification to your phone with the sale details. You can use Pipedream's built-in support for Shopify or WooCommerce to easily detect new orders.
Website Uptime Monitor: Combine Push by Techulus with a Pipedream scheduled workflow that pings your website at regular intervals. If your site goes down or the response time exceeds a threshold, send an instant Push notification, allowing for rapid response to outages.
CI/CD Completion Notification: After a build or deployment process completes in your CI/CD pipeline, use the Push by Techulus API to notify your development team. This can be integrated with GitHub actions running on Pipedream to notify when a build passes or fails, keeping everyone in the loop.
Sends a new Push notification to the user. See the documentation
Push by Techulus uses API keys for authentication. When you connect your Push by Techulus account, Pipedream securely stores the keys so you can easily authenticate to Push by Techulus APIs in both code and no-code steps.
To retrieve your API key,