Simple invoicing and time tracking tool. It's forever free.
Emit new event every time there is a new client in neetoInvoice. See the documentation
Get a unique address where you can send emails to trigger your workflow.
Emit new event when there is a new invoice. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
The neetoinvoice API facilitates the creation and management of invoices, allowing users to seamlessly generate, send, and track invoices directly through their API. Integrating neetoinvoice with Pipedream opens up a realm of possibilities for automating your invoice-related workflows. With Pipedream, you can connect neetoinvoice to a multitude of apps to create custom, serverless workflows that can handle events like invoice creation, payment updates, and sending reminders, all managed with a user-friendly interface.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetoinvoice: {
type: "app",
app: "neetoinvoice",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetoinvoice.$auth.organization_name}.neetoinvoice.com/api/v1/neeto_integrations/zapier/clients`,
headers: {
"Authorization": `Basic ${this.neetoinvoice.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});