The billing & accounting software for freelancers, founders, startups, small entrepreneurs and smallbusinesses. Free test now!
Converts a Lead into a Contact or an Account. See the documentation
Creates a new invoice with optional details like invoice date, due date, discount amount, and invoice items. See the documentation
Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.
The sevDesk API allows you to automate tasks around billing, accounting, and inventory management within the sevDesk platform. With it, you can create invoices, manage customers, and handle your accounting processes programmatically. When integrated into Pipedream workflows, you can connect sevDesk with other apps to streamline your financial operations, trigger actions based on events, and sync data across your business stack, enabling a seamless financial workflow automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sevdesk: {
type: "app",
app: "sevdesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.sevdesk.de/api/v1/Contact`,
headers: {
"Authorization": `${this.sevdesk.$auth.api_token}`,
"Content-Type": `application/json`,
},
})
},
})
The Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
})
},
})