with Schedule and NetSuite?
Retrieves a sales order by ID from NetSuite. See the documentation
Retrieves a list of invoices from NetSuite. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
netsuite: {
type: "app",
app: "netsuite",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.netsuite.$auth.account_id}.suitetalk.api.netsuite.com/services/rest/record/v1/customer`,
headers: {
Authorization: `Bearer ${this.netsuite.$auth.oauth_access_token}`,
},
params: {
limit: `10`,
},
})
},
})