Leading project, task and time management software! ProWorkflow is an online project management software that enables you to keep accurate time-keeping records, organize, plan, and delegate jobs and tasks whilst using the timeline to have an overview of company activity.
Emit new event when a new comapny is created. See the docs.
Emit new event when a new contact is created. See the docs.
Emit new event when a new project is created. See the docs.
The ProWorkflow API offers a powerhouse of project management and workflow automation capabilities. With Pipedream, you can leverage these abilities to create custom integrations that boost productivity and streamline operations. By tapping into ProWorkflow's endpoints, you can automate project creation, task assignments, time tracking, and report generation. This API dovetails neatly with other apps on Pipedream, allowing you to create multifaceted workflows that respond in real-time to external triggers, such as emails, form submissions, and calendar events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proworkflow: {
type: "app",
app: "proworkflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.proworkflow.net/me`,
headers: {
"apikey": `${this.proworkflow.$auth.api_key}`,
},
auth: {
username: `${this.proworkflow.$auth.username}`,
password: `${this.proworkflow.$auth.password}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})