An all-in-one solution for software and operations to help you manage your D2C brand throughout fulfillment and beyond.
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Create an action for given workspace See the documentation
The Hive API allows for robust interaction with Hive's project and team management tools. By leveraging the Hive API within Pipedream, you can automate tasks, sync data across platforms, and create custom workflows that enhance productivity. For instance, you could automate project creation, update task statuses, or sync information to other business tools. Pipedream's serverless platform simplifies integration, enabling you to focus on crafting workflows without worrying about infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hive: {
type: "app",
app: "hive",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hive.com/api/v1/users`,
params: {
api_key: `${this.hive.$auth.api_key}`,
user_id: `${this.hive.$auth.user_id}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS