Dashboards for developers Open source plugins for metrics about your programming
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
WakaTime offers insights into your coding activity, enabling you to track the time you spend on programming projects. With the WakaTime API on Pipedream, you can automate the extraction of this data to trigger actions in other apps, generate reports, and monitor your development workflow. Pipedream's serverless platform allows you to connect WakaTime to hundreds of other services without writing comprehensive code, creating opportunities to streamline your productivity and gain data-driven insights into your coding habits.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wakatime: {
type: "app",
app: "wakatime",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://wakatime.com/api/v1/users/current`,
headers: {
Authorization: `Bearer ${this.wakatime.$auth.oauth_access_token}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})