Status Hero is a work communication tool that replaces time-consuming meetings, shoulder taps, digging for data, and other interruptions with a tidy report. Use it to get a continuous, clear understanding of accomplishments, intentions, and blockers across your organization. Perfect for remote and/or hybrid teams!
Emit new events when new status update (check-in) occurs. See the docs here
Emit new events when new comments are created on statuses. See the docs here
Emit new events when new reaction for a status update (check-in) occurs. See the docs here
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Creates a vacation or leave day for an individual team member, See the docs
The Status Hero API allows you to interface with the Status Hero platform programmatically, enabling you to automate stand-ups, collect team status updates, and integrate this data with other apps and services. By leveraging Pipedream's capabilities, you can set up workflows that react to new check-ins, sync updates to project management tools, or analyze team productivity by aggregating status data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
status_hero: {
type: "app",
app: "status_hero",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://service.statushero.com/api/v1/members`,
headers: {
"X-Team-ID": `${this.status_hero.$auth.team_id}`,
"X-API-Key": `${this.status_hero.$auth.api_key}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})