Shared inbox & team chat solution used by thousands of businesses all over the globe.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Emit new event when a new comment is added. See the Documentation
The Missive API allows users to streamline their email and team communication within the Pipedream platform. It offers access to manage conversations, collaborate on emails, and automate workflows involving your communication stack. With Pipedream, you can harness this API to integrate Missive with various other apps, enhance your team's productivity, and create custom automation based on triggers like new emails or conversation status changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
missive: {
type: "app",
app: "missive",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public.missiveapp.com/v1/users`,
headers: {
Authorization: `Bearer ${this.missive.$auth.api_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.