Trigger workflows on an interval or cron schedule.
With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:
QuickBooks Sandbox API provides a powerful and reliable platform to develop,
customize, and test applications related to accounting and finance. The API
allows developers to access a variety of features, such as:
With the Quickbooks Sandbox API, you can build the following applications:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quickbooks_sandbox: {
type: "app",
app: "quickbooks_sandbox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://sandbox-quickbooks.api.intuit.com/v3/company/${this.quickbooks_sandbox.$auth.company_id}/companyinfo/${this.quickbooks_sandbox.$auth.company_id}`,
headers: {
Authorization: `Bearer ${this.quickbooks_sandbox.$auth.oauth_access_token}`,
"accept": `application/json`,
"content-type": `application/json`,
},
})
},
})