Integration platform for developers
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event at a specified time before a card is due.
Triggers when a new estimate is created. See the documentation.
Triggers when a new invoice is created in Zoho Invoice. See the documentation.
Creates a new estimate in Zoho Invoice. See the documentation.
Creates a new invoice in Zoho Invoice. See the documentation.
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})
The Zoho Invoice API offers a suite of tools to automate the invoicing and billing processes. With this API, you can create and manage customers, invoices, and payments. On Pipedream, you can harness these capabilities to build workflows that trigger on specific events, such as new invoice creation, or scheduled tasks that could, for example, follow up on unpaid invoices. Due to its serverless architecture, Pipedream ensures each step of your workflow runs only when needed, saving resources and time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_invoice: {
type: "app",
app: "zoho_invoice",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_invoice.$auth.api_domain}/invoice/v3/users/me`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_invoice.$auth.oauth_access_token}`,
"X-com-zoho-invoice-organizationid": `${this.zoho_invoice.$auth.organization_id}`,
},
})
},
})